$(document).ready(function(){
	
	// cycle the home page hero area images
	$('.home .cycle').cycle({
	});
	
	$('.shop .cycle').cycle({
	});
	
	$('a.prod-img').hover(function() {
		$(this).children('img.prod1').hide();
	}, function() {
		$(this).children('img.prod1').show();
	});
	
	$('.products div:nth-child(3n)').css('marginRight','0');
}); // end of the document ready function

