$(document).ready(function() {

//	$('#cycle').cycle({
//		fx: 'fade'
//	});

//	$('figure.gallery-item a').attr('rel','gallery');
//	$('figure.gallery-item a[rel="gallery"]').fancybox();
	
	$('#main').hide().fadeIn(600);

	$('ul.theshirts li p a').append('<div class="overlay"></div>');

	$("ul.theshirts li p a").hover(
		function() {
			$('.overlay', this).stop(true, true).fadeIn(300);
		},
		function() {
			$('.overlay', this).fadeOut(500);;
	});

});
