
//Script che mi fa funzionare il menu in IE
mainNav = function() {
	$("#topnav li").bind("mouseenter",function(){
                this.className += "_over over";
	}).bind("mouseleave",function(){
                this.className = this.className.replace("_over over", "");
	});
}


//Script che mi fa vedere le PNG su IE
$(document).ready(function(){
	$('img[@src$=.png]').ifixpng();
}); 



function quickFindSubmit() {
	$("form[name='quick_find']").submit();
}


$(document).ready(function() {
	$('.myselectbox').selectbox({
		debug: true,
		onchange : function(){
			quickFindSubmit();
		}
	});
});



// Script che mi fa fare il fade dello slogan nell'header
$(document).ready(
		function(){
			$('.bslogan').innerfade({
				speed: 1000,
				timeout: 6000,
				type: 'random_start',
				containerheight: 'auto'
			});
			
	});


jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
}) 