$(function() {
	/*$('#content img').click(function() {
		var name = $(this).attr('alt');
		
		switch(name) {
			case 'bcb':
				window.location.href = 'http://www.zudacomics.com/the_black_cherry_bombshells';
				break;
			case 'lamorte':
				window.location.href = 'http://www.zudacomics.com/lamorte_sisters';
				break;
			case 'moon':
				window.location.href = 'http://www.moongirlfightscrime.com';
				break;
			case 'carnivale':
				window.location.href = 'http://www.midtowncomics.com/Neshop/product_detailfull.asp?PR_ID=1056667';
				break;
			default:
				break;
		}
		
		return true;
	});*/
	
	$('ul.gallery li').hover(function() {
		var thumbOver = $(this).find('img').attr('src');
		/*var class = $(this).find('a').attr('class');
		
		if (class === 'comicThumb') {
			$(this).find('a.comicThumb').css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		} else if (class === 'storeThumb') {
			$(this).find('a.storeThumb').css({'background' : 'url(' + thumbOver + ') 235px 0 no-repeat'});
		}*/
		
		$(this).find('a').css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find('span').stop().fadeTo('normal', 0 , function() {
			$(this).hide()
		});
	} , function() {
		$(this).find('span').stop().fadeTo('normal', 1).show();
	});
	
	$('.storeThumb').click(function() {
		alert('Coming soon');
	});
});
