
jQuery(document).ready(function() {
	// Featured Products
    jQuery('#featured').jcarousel();
	// FancyBox jQuery
	jQuery("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 	
	// Slider Homepage
	jQuery('#slider').cycle({
        fx: 'fade',
        speed: 2500,
		timeout: 6000,
      /*  pager: '#controls',
		slideExpr: '.panel'*/
    });
	/*back to top blAck PR*/
	jQuery('a.top').click(function(){
		jQuery('html, body').animate({scrollTop: '0px'}, 300);
		return false;
	});	
	
	/*home marquee blAck PR*/
	jQuery('#home-marquee marquee').marquee('pointer').mouseover(function () {
		jQuery(this).trigger('stop');
	}).mouseout(function () {
		jQuery(this).trigger('start');
	}).mousemove(function (event) {
		if (jQuery(this).data('drag') == true) {
			this.scrollLeft = jQuery(this).data('scrollX') + (jQuery(this).data('x') - event.clientX);
		}
	}).mousedown(function (event) {
		jQuery(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
	}).mouseup(function () {
		jQuery(this).data('drag', false);
	});		
});

