/**
 * @author ANtek
 */
	
  
  $(document).ready(function(){
// 		var evt = $.browser.msie ? "click" : "change";

    $("#partners img").fadeTo(100,0.1);
	$("#partners img").hover(function(){
            $(this).fadeTo(100,1);
        }, function() {
            $(this).fadeTo(100,0.1);
        }
    )
	  
  });
  
