  var GB_ANIMATION = false;
  $(document).ready(function(){
	$('.nav .pos1 .current').parent('li').parent('ul').addClass('pos1current');
	$('.nav .pos2 .current').parent('li').parent('ul').addClass('pos2current');
	$('.nav .pos3 .current').parent('li').parent('ul').addClass('pos3current');
	$('.nav .pos4 .current').parent('li').parent('ul').addClass('pos4current');
	$('.nav .pos5 .current').parent('li').parent('ul').addClass('pos5current');
	if (window.navigator.userAgent.indexOf("Firefox")>=1){    
		$('.nav li.level1').mouseover(
			function() {$(this).children('span').addClass('hover'); $(this).children('ul').show(); $(this).children('em').show();}
		);
		$('.nav li.level1').mouseout(
			function() {$(this).children('span').removeClass('hover'); $(this).children('ul').hide(); $(this).children('em').hide();}
		);  
	}else{    
		$('.nav li.level1').hover(
			function() {$(this).children('span').addClass('hover'); $(this).children('ul').show();$(this).children('em').show();},
			function() {$(this).children('span').removeClass('hover'); $(this).children('ul').hide();$(this).children('em').hide();}
		);  
	}   
		
	$("#GB_overlay").height( $('body').height() );
	$("a.greybox").click(function(){
	  var t = this.title || $(this).text() || this.href;
	  GB_show(t,this.href,730,1130);
	  return false;
	});
	/*###insignio###*/
	$("a.greybox_mini").click(function(){
	  var t = this.title || $(this).text() || this.href;
	  GB_show(t,this.href,460,296,'greybox_mini');
	  return false;
	});
	
	$("a.greybox_lite").click(function(){
	  var t = this.title || $(this).text() || this.href;
	  GB_show(t,this.href,500,650);
	  return false;
	});
	
	$('.subnav .pos1 .current').parent('li').parent('ul').addClass('pos1current');
	$('.subnav .pos2 .current').parent('li').parent('ul').addClass('pos2current');
	$('.subnav .pos3 .current').parent('li').parent('ul').addClass('pos3current');
	$('.subnav .pos4 .current').parent('li').parent('ul').addClass('pos4current');
	$('.subnav li a:not(.current)').hover(
			function() {$(this).addClass('hover');},
			function() {$(this).removeClass('hover');}
		);
	$('.selectcountry span').click(function() {
			$('.selectcountry ul').slideDown(300);
		});
	$('.selectcountry').mouseout(function() {
			$('.selectcountry ul').hide();
		});
	$('.selectcountry ul').mouseover(function() {
			$('.selectcountry ul').show();
		});
  });