(function ($) {
	$(document).ready(function(){
		$(".photo img").live("mouseover mouseout",function(event){
			if (event.type == 'mouseover') {
   			 $(this).css("opacity","0.5")
 			 } else {
   			 $(this).css("opacity","1")
  			}
		});
	});
})(jQuery);
(function ($) {
	$(document).ready(function(){
		$(".mainimage img").live("mouseover mouseout",function(event){
			if (event.type == 'mouseover') {
   			 $(this).css("opacity","0.8")
 			 } else {
   			 $(this).css("opacity","1")
  			}
		});
	});
})(jQuery);



