$(document).ready(function(){

	$("#languages").hover(
	  function () {
		  if(window.willhide) clearTimeout(window.willhide);
		  $("#languages ul").show(500);
	  }, 
	  function () {
		  window.willhide = setTimeout(function() {
             $("#languages ul").hide(500);
          },2000)
	  }
	);
	$("#languages ul").hide();
	
	$(".language1 #currentLanguage").html("<img src='../images/2010/flags/flag_1.gif' /> ENGLISH");
	$(".language2 #currentLanguage").html("<img src='../images/2010/flags/flag_2.gif' /> FRAN&Ccedil;AIS");
	$(".language3 #currentLanguage").html("<img src='../images/2010/flags/flag_3.gif' /> Deutsch");
	$(".language4 #currentLanguage").html("<img src='../images/2010/flags/flag_4.gif' /> Portugu&ecirc;s");
	$(".language5 #currentLanguage").html("<img src='../images/2010/flags/flag_5.gif' /> ESPA&Ntilde;OL");
	$(".language6 #currentLanguage").html("<img src='../images/2010/flags/flag_6.gif' /> ITALIANO");
	$("#currentLanguage").show();
            
	
	
	
	defaultFastSearch = $("#fastSearch #nome").val();
	$("#fastSearch #nome").focus(function(){
		if($(this).val()=== defaultFastSearch) {
			$("#fastSearch #nome").val("")
		}
	});
	
	
	
	
	$('input[type="text"]').addClass("idleField");
	$('input[type="text"]').focus(function() {
		$(this).removeClass("idleField").addClass("focusField");
		if (this.value == this.defaultValue){ 
			this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
	});
	$('input[type="text"]').blur(function() {
		$(this).removeClass("focusField").addClass("idleField");
		if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
	
	$('<param name="wmode" value="transparent"></param>').insertBefore('embed'); 
	$('embed').attr('wmode','transparent'); 
	
	 $('#techBtn').colorbox({'transition':'fade', 'speed':500, 'width':680, 'height':500, iframe:true,
					onOpen:function(){ $('#topBanners iframe').hide();$('object').hide(); },
					onClosed:function(){ $('#topBanners iframe').show();$('object').show(); }
					});
	 $('#orderBtn, .colorbox').colorbox({'transition':'fade', 'speed':500, 'width':470, 'height':485, iframe:true,
					onOpen:function(){ $('#topBanners iframe').hide();$('object').hide(); },
					onClosed:function(){ $('#topBanners iframe').show();$('object').show(); }
					});
	
});












