
//Namespace
if(typeof PM == 'undefined') {
	PM = {};
}

          var pie7 = false;
$(document).ready(function(){

        if(pBasket == true){
	  if(navigator.appVersion.indexOf("MSIE 7.")>=0){
	    pie7 = true ;
          }
          if(pie7 == true){
            $('#content').before('<div class="pWarning"><p><b>Achtung:</b><br/>Ihre Internet-Explorer Version unterstützt unsere Warenkorb-Funktion nicht <br/> Bitte benutzen Sie einen anderen Browser oder installieren Sie eine neuere Version des IE.</p><p><b>Please note:</b><br/>Your version of the Internet Explorer doesn´t support our shopping function.<br/>Please switch to another browser or install a new version of the Internet Explorer.</p></div>');
          }
        }

	$("#ullangnav").hide();
	$("#ullangnav").animate({
		opacity:0.8
	});


	$("#langnavselector").mouseover(function() {
		PM.clearCountryTimeout();
	});
	$("#ullangnav").mouseover(function() {
		PM.clearCountryTimeout();
	});

	$("#ullangnav").mouseout(function(){
		PM.countryTimeout = setTimeout(
			function(){
				$('#ullangnav').hide('slow');
			},500
		);
	});

	$(".news-latest-item").each(
	function(){
	$(this).find(".news-latest-more:gt(0)").hide();
	}
	);
	
	PM.clearCountryTimeout = function(){
		clearTimeout(PM.countryTimeout);
		$("#ullangnav").show("slow");		
	}
});
