﻿//<![CDATA[
	//$.noConflict();
	// Menu principale
	$(document).ready(function() {
		$('.thumb_popup').css('bottom','106')
		$('ul.superfish').superfish({
			delay:       200,
			animation:   {'marginLeft':'0px',opacity:'show',height:'show'},
			speed:       'fast',
			autoArrows:  true,
			dropShadows: false
		});
		$('ul.nav > li > a.sf-with-ul').parent('li').addClass('sf-ul');
		// Anteprime
		var $feature_thumb = $('#featured-thumbs img')
		$feature_thumb.hover(function(){			
			$next_div = $(this).parent('a').next('div');
			$next_div.css('bottom','106px')
			$next_div.css({'left':$(this).position().left-10});
			$(this).addClass('hover').fadeTo('fast',0.5);
			$next_div.animate({"bottom": "120px", "opacity": "toggle"}, "fast");
		},function(){
			$(this).removeClass('hover').fadeTo('fast',1);
			$next_div.animate({"bottom": "106px", "opacity": "toggle"}, "fast");
		});


	});
//]]>
