
$(document).ready(function(){
	
	
	$("ul.sf-menu").superfish();
	
	
	
	
	
	$("#openConfig").click(function() {
		
		var w;
		var h;
		w = 801;  // width
		h = 613;  // height
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = ',top='+wint+',left='+winl;
		window.open("index_"+$.trim($("#lang").html())+".html","","width="+w+",height="+h+",menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0"+winprops);
	});

});





