jQuery(document).ready(function(){	

	// Slider Homepage
	jQuery('#slide .placeholder').cycle({
		fx:'scrollHorz',
		timeout:0,
		speed:2500,
		slideExpr:'.panel',
		pager:'#pager',
			pagerAnchorBuilder:function(idx, slide){
			return '<a href="#">&nbsp;</a>';
		}
	});
	
	jQuery('a.img-display').mouseenter(function(){
		jQuery(this).find('.category-description-home').fadeIn(250).css("display", "block");
		}).mouseleave(function(){
		jQuery(this).find('.category-description-home').fadeOut(250).css("display", "none");
	});

	//Back to top slider
    jQuery('a[href=#totop]').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 600);
        return false;
    });
	
	// Custom Menu
	jQuery(".category").click(function() {
		var open = this.getAttributeNode('lang').value;
		jQuery(".subcategory_" + open).slideToggle('medium');
	});	

	// FancyBox jQuery
	jQuery("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 

	// Cart Popout
	jQuery(".mycart").click(function() {
		jQuery("#mycart-block").toggle('medium');
	});
	
	jQuery('#mycart-block').stickyfloat({ 
		duration: 600,
		offsetY: 191
	});
	
	//Border Style
	jQuery('#cart-sidebar li.item:last').css("border-bottom", "1px solid #dbdbdb");

	//Special Offers	
	if (jQuery('.generic-product-grid td .price-box').find('.special-price'))(function(){
		jQuery(this).parent('.generic-product-grid td').addClass('offer');
	});
	

});
