
$j(window).ready(function() {		

	(function() {
		$j('#top-shows ul li a').hover(function(e){
			if(e.target.tagName.toLowerCase() != 'a') return;
			
			if($j(e.target).find('img').length <= 0) {
				$j(e.target).append('<img src="'+ $j(e.target).attr('rel') +'" />');
			}
			
			$j('#top-shows ul li a img').css('display', 'none');
			$j(e.target).find('img').css('display', 'block');
		}, null);
		
		$j('#top-games ul li a').hover(function(e){
			if(e.target.tagName.toLowerCase() != 'a') return;
			
			if($j(e.target).find('img').length <= 0) {
				$j(e.target).append('<img src="'+ $j(e.target).attr('rel') +'" alt="img" />');
			}
			
			$j('#top-games ul li a img').css('display', 'none');
			$j(e.target).find('img').css('display', 'block');
		}, null);
		
		$j('#top-videos ul li a').hover(function(e){
			if(e.target.tagName.toLowerCase() != 'a') return;
			
			if($j(e.target).find('img').length <= 0) {
				$j(e.target).append('<img src="'+ $j(e.target).attr('rel') +'" alt="img" />');
			}
			
			$j('#top-videos ul li a img').css('display', 'none');
			$j(e.target).find('img').css('display', 'block');
		}, null);
	})();
	
	$j('#promos .promo').rolldown({selector:'.promo-rollover', correction:2});

});
