$(document).ready(function(){

	$(".promos a").hover(
     function () {
       $(this).parent("div").children("a").children("img").addClass("hover");
     }, 
     function () {
       $(this).parent("div").children("a").children("img").removeClass("hover");
     }
   );

	$(".rotate").cycle({ 
    fx: 'fade', 
    speed: 'slow',
    timeout: 5000
	});

});