$(document).ready(function(){


						   
						  $("#img1").hover(function(){
						  $("#img2").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img3").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img4").stop().animate({opacity:1}); // This should set the opacity to 100% on hover
							$("#img1").stop().animate({opacity:1}); // This should set the opacity to 100% on hover

						   });
						   
						  $("#img2").hover(function(){
						  $("#img1").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img3").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img4").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
	
							$("#img2").stop().animate({opacity:1}); // This should set the opacity to 100% on hover

						   });
						   
						  $("#img3").hover(function(){
						  $("#img2").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img1").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img4").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						
							$("#img3").stop().animate({opacity:1}); // This should set the opacity to 100% on hover

						   });
						   
						   	  $("#img4").hover(function(){
						  $("#img2").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						  $("#img1").stop().animate({opacity:1}); // This should set the opacity to 100% on hover
						  $("#img3").stop().animate({opacity:0.3}); // This should set the opacity to 100% on hover
						
							$("#img4").stop().animate({opacity:1}); // This should set the opacity to 100% on hover

						   });
						   
					
			
						   
						   });


