$(document).ready(function(){
	$('#nl-lang li a').hover(function(){$(this).parent().addClass('hover');},function(){});	
	$('#nl-lang li').hover(function(){},function(){$(this).removeClass('hover');});
																	   
	if(getPageSize.w()<=780){
		$('#bodyInner').css('width','780px');
	}else{
		$('#bodyInner').css('width','930px');
	}
});

getPageSize={w:function(){var tmp=getPageSize.wh();return tmp[0]},h:function(){var tmp=getPageSize.wh();return tmp[1]},wh:function(){var de=document.documentElement;var w=window.innerWidth||self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;var h=window.innerHeight||self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;arrayPageSize=[w,h];return arrayPageSize}};
