$(document).ready(function() {
	$('div#emailForm input.submit-image-a').hover(
	    function() {
			$(this).addClass('hover');
		},
		function() {
			$(this).removeClass('hover');
		}
	);
	
	$('div.playerBox ol li').hover(
		function() {
			$(this).find('a img').hide();
			$(this).find('a div.voteImage').show();	
		},
		function() {
			$(this).find('a img').show();
			$(this).find('a div.voteImage').hide();
		}
	);
	
	$('div.playerWrapper ol li').hover(
		function() {
			$(this).find('a img').hide();
			$(this).find('a div.voteImage').show();	
		},
		function() {
			$(this).find('a img').show();
			$(this).find('a div.voteImage').hide();
		}
	);
	
	$('div.playerThumbWrap ol li').hover(
		function() {
			$(this).find('a img').hide();
			$(this).find('a div.voteImage').show();	
		},
		function() {
			$(this).find('a img').show();
			$(this).find('a div.voteImage').hide();
		}
	);
	
	$('div#contentWrap div.container-body-a div.panel-h ol li').hover(
		function() {
			$(this).find('img').hide();
			$(this).find('div.voteImage').show();	
		},
		function() {
			$(this).find('img').show();
			$(this).find('div.voteImage').hide();
		}
	);
	
	$('div.shopColumnFull div.photoBox-a ol li a').hover(
		function() {
			$(this).find('img').hide();
			$(this).find('div.overlay-a').show();	
		},
		function() {
			$(this).find('img').show();
			$(this).find('div.overlay-a').hide();
		}
	);
	
	$('div.shopColumnFull div.photoBox-a ol li a').each(function(i,n) {
		$(n).click(function() {
			$('body').append('<div class="overlay-whole"><div></div></div>');
			
			return false;
		});
	});
});