//Add to the page which is open in iframe onmouseover="hideSubMenu()"
// i= number of submenu and j= number of menu Item 
//qm4_1 is the id of sub of one submenu

function hideSubMenu(){ 
	for(var i=1; i<=7; i++){
		window.parent.document.all['qm'+i].style.visibility = 'hidden';
	}
	window.parent.document.all['qm4_1'].style.visibility = 'hidden';
	for(var j=1; j<=7; j++){
		window.parent.document.all['qm'+i+j].style.visibility = 'hidden';				
	}	
	window.parent.status = "Welcome to Safi Airways";
}

