$(document).ready(function() {
    $('.actions_tov').cycle({
		fx: 'turnDown'
	});
	$('#carusel').clickCarousel({margin: 10});
	function ajaxAddToCart(pid)
	{
     $.ajax({
         type: 'POST',
         data: $('productForm_'+pid).serialize(),
         url: '/shop/cart/add',
         success: function(){$('.cart').load('/shop/ajax/getCartDataHtml')}
      });
 
     $("#cartNotify_"+pid).css('display', 'block');
     setTimeout(function() {  $("#cartNotify_"+pid).css('display', 'none') }, 2000); 
	}
	$('ul.sf-menu').superfish({
		speed: 'fast',
	});
	$('.slider').mobilyslider({
			transition: 'fade',
			autoplay: true,
			animationSpeed: 800,
			bullets: true,
			arrowsHide: false
	});
	$('.mail_to').colorbox({width:'440px',height:'440px', inline:true, href:'#sale'});
});
