// JavaScript Document


  $(document).ready(function(){
    
 /*   $("#footer_img img").hover(function () {
      $(this).fadeOut("1000");
    });
*/
 $("#footer_img img").fadeTo("slow",0.44);



$("#footer_img img").hover(
      function () {
        $(this).fadeTo("slow",1);
		
      }, 
      function () {
        $(this).fadeTo("slow",0.44);
		
      }
    );


   
  //li with fade class
  
   
   
   
   });
