// JavaScript Document
function openPopUp(URL, W, H) {
// opens a new popup window and displays the passed url, and height & width settings
 var thisWidth = W;
 var thisHeight = H;
 var thisURL = URL;
 // set the min width and height if not passed
 if(typeof thisWidth == "undefined"){
 	thisWidth = 500;
 }
 if(typeof thisHeight == "undefined"){
	 thisHeight = 600;
 }
 //alert("passed W = "+thisWidth+" passed H = "+thisHeight);
 var strOptions = "menubar=no,statusbar=yes,resizable=yes,scrollbars=yes,toolbar=no,height="+thisHeight+",width="+thisWidth;
 var newPopUp = window.open(thisURL, "", strOptions);
 newPopUp.focus();

}

$(".menu ul:first").mouseout(function(){
	alert("hola");
})