
function openUploadWindow() 
{
	var width = 420;
	var height = 470;
	var url = "http://www.print-it.eu/upload.html";
	var left = parseInt((screen.availWidth/2) - (width/2));
	var top = parseInt((screen.availHeight/2) - (height/2));
	var windowFeatures = "width=" + width + ", height=" + height + ", status, resizable, left=" + left + ", top=" + top + "screenX=" + left + ", screenY=" + top;
	
	uploadWindow = window.open(url, "uploadWindow", windowFeatures);
}

$(document).ready(function() {
	$(".menu-item").hover(
		function () {
			$(this).find(".submenu").stop().show().css("opacity", 1);
		},
		function () {
			$(this).find(".submenu").fadeOut(1000);
		}
	);
});
