// JavaScript Document

$(document).ready(function(){
	    $(document).pngFix(); 
    
		$('.partner-logo').css({opacity:0.6});
		$("a.fancy-photo").fancybox();
		$('.partner-logo').hover(function(){
						$(this).stop().animate({opacity:0.9},{queue:false,duration:300});
					}, function() {
						$(this).stop().animate({opacity:0.6},{queue:false,duration:300});
					});
});
