var obj = null;

function hidemenu() {
	if(obj){$(obj).hide();}
}
	
$(document).ready(function(){

	$(".showsubmenu").hover(
		function () {
			if(obj) {
				$(obj).hide();
				obj = null;
			}
			toshow = document.getElementById($(this).attr("rel"));
			$(toshow).show();
		},
		function () {
			obj = document.getElementById($(this).attr("rel"));
			setTimeout("hidemenu()",600);
		}
	);
	
	$(".submenu").hover(
		function () {
			obj = null;
			$(this).show();
		},
		function () {
			obj = $(this);
			setTimeout("hidemenu()",600);
		}
	);

});