// JavaScript Document

$(document).ready(function(){
	/*$("div.logo-home").mouseenter(function(){
		if (!$(this).is(':animated')) {
			$(this).addClass('selected');
			$('.selected img.colour').fadeIn("medium");
		}
    })
	$("div.logo-home").mouseleave(function(){
	   if (!$(this).is(':animated')) {
			$('.selected img.colour').fadeOut("medium");
			$(this).removeClass('selected');
	   }
    });*/
	
	$('#propeller-client-logos .logo-home, #propeller-client-logos .logo-home a').hover(function(){
		$(this).children('img').stop(true, true).animate({'opacity': 0});
	}, function(){
		$(this).children('img').stop(true, true).animate({'opacity': 1});
	}); 

});


