var hideCartTimer = null;
var hideRecentTimer = null;

function hideLayer(elementId) {
	if(document.getElementById(elementId) != null) {
		if(elementId == 'my_cart_div'){
			hideCartTimer = setTimeout(function(){document.getElementById(elementId).style.display = "none";}, 1000);
		}else{
			hideRecentTimer = setTimeout(function(){document.getElementById(elementId).style.display = "none";}, 1000);
		}
	}
}

function showLayer(elementId, mytimer) {
	if(document.getElementById(elementId) != null) {
		document.getElementById(elementId).style.display = "block";
		if(elementId == 'my_cart_div'){
			clearTimeout(hideCartTimer);
		}else{
			clearTimeout(hideRecentTimer);
		}
	}
} 

$('#cart_li').mouseover(function(){showLayer('my_cart_div');}).mouseout(function(){hideLayer('my_cart_div'); });
$('#recent_pages_li').mouseover(function(){showLayer('recent_pages_div');}).mouseout(function(){hideLayer('recent_pages_div'); });
$('#my_cart_div').mouseover(function(){showLayer('my_cart_div');}).mouseout(function(){hideLayer('my_cart_div'); });
$('#recent_pages_div').mouseover(function(){showLayer('recent_pages_div');}).mouseout(function(){hideLayer('recent_pages_div'); });
