jQuery(document).ready(function($) {
	$('.panel .img').fadeOut(0)
	$('.panel').mouseenter(function(){
			$(this).find('.img').stop(true, true).fadeIn(500)
			$(this).find('.p').stop(true, true).animate({color:'#FFFFFF'},{duration:500})
		})
	$('.panel').mouseleave(function(){
			$(this).find('.img').stop(true, true).fadeOut(500)
			$(this).find('.p').stop(true, true).animate({color:'#64727F'},{duration:500})
		})
		
	$('#promos').cycle({
		fx: 'fade',
		pause:1,
		timeout: 5000,
		speed: 1000
	});
	
});
