/**
 * Template designed by zen-cart-power.net* 
 * Power your Zen Cart!

 * @copyright Copyright 2008-2011 Newlement
 */
	$(document).ready(function() {

			$("img.full").click(function() {$(".popup-cart").toggle("fast");});
			$(document).click(function() {$('.popup-cart').hide();});

			$("div#main_banner").cycle({
				fx: 'fade', //transition effects: shuffle, zoom, turnDown, curtainX
				timeout: 5000, //miliseconds between slide image change
				pause: 1,
				prev: '#previous',
				next: '#next'
			});

			$("a.detailed_image").fancybox({
				'titleShow'		: true,
				'titlePosition' : 'inside',
			});	
		});
