 $(document).ready(function(){
							$("#heath-img").hover(
											  function(){
												  $(this).fadeTo("slow",0.3);
											  },
											  function(){
												  $(this).fadeTo("slow",1);
											  }
											  );
							$("#edge-img").hover(
											  function(){
												  $(this).fadeTo("slow",0.3);
											  },
											  function(){
												  $(this).fadeTo("slow",1);
											  }
											  );
							});

 