jQuery(function() {
    jQuery('#menu .product').hoverIntent(function(){
        jQuery(this)
            .css('z-index', 100)
            .addClass('active')
            .find('.sottomenu')
            .slideDown('fast')
            ;
        },function(){
        jQuery(this)
            .css('z-index', 40)
            .removeClass('active')
            .find('.sottomenu')
            .fadeOut('fast');
    });
});

/* ------------------------------------------------
Slider
------------------------------------------------ */
/*$(window).load(function() {
	
	$('#slider').plusSlider({
		sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
		paginationBefore: false,
		createArrows: true,
		width: 1300,
		height: 530,
		sliderType: 'fader', // Choose whether the carousel is a 'slider' or a 'fader'
		displayTime: 5000
	});
});*/
