//--DOMREADY
	
$(document).ready(function() {
	
	
	//--fixPng per ie<=6.0
	$(document).pngFix();
	
	//--embedding swf
	var flashvars = {};
	var params = { menu: "false", wmode: "transparent" };
	var params_video_homepage = { menu: "false" };
	swfobject.embedSWF("files/swf/logo.swf", "header_logo", "430", "186", "9.0.0", "expressInstall.swf", flashvars, params);
	swfobject.embedSWF("files/swf/interactive_video.swf", "content_showcase_interactive", "694", "324", "9.0.0", "expressInstall.swf", flashvars, params_video_homepage);
	
	//--menu_buttons initialization
	
	$("#menu_repeat img").animate({opacity:0.75},0);
	
	//--menu_buttons rollover&rollout
	$("#menu_repeat div").hover(
	      function () {
	        $('img', this).stop().animate({marginLeft:15,opacity:1},200);
	      }, 
	      function () {
	        $('img', this).stop().animate({marginLeft:20,opacity:0.75},200);
	      }
	);
	
	
	$('#buttonHomepage').hover(function() {
	  $(this).css('lower_menu_buttons_homepageHover');
	}, function() {
	  $(this).css('lower_menu_buttons_homepageHover');
	});
	
	
	$('#privacy_butt').tipsy({fade: true});
	
	//--gallery clienti
	$('.scrollable').scrollable({easing: 'easeOutSine', speed: 500, circular: true}).navigator();
});
