resizeWindow(1000);


function resizeWindow(width) {
	var screenW = screen.width;
	var posX = (screenW - width) / 2;
	
	var height = screen.height;
	var posY = 0;
	
	window.resizeTo(width, height);
	window.moveTo(posX, posY);
}


function expand(id) {	
	$(".submnu:not(.sub-"+id+")").slideUp(300);
	
	$(".sub-"+id).queue(function () {
		$(this).slideDown(300);
		$(this).dequeue();
	});
}
