$(document).ready(function(){
	// Homepage welcome area - scrolling slides
	$("div.scrollable").scrollable({
		clickable: false,
		disabledClass: 'arr_disabled',
		easing: 'swing',
		keyboard: false,
		size: 1,
		speed: 2000
	});

	// Display large image when hovering product's thumbnail
	$(document).ready(function(){
		$(".impopup-target").ezpz_tooltip({
			contentPosition: 'rightStaticCustom',
			offset: 130,
			hideContent: function(content) {
				// if the showing animation is still running, be sure to stop it
				// and clear the animation queue. otherwise, repeatedly hovering will
				// cause the content to blink.
				content.stop(true, true).fadeOut('slow');
			}
		});
	});
});