var holding;
function viewCartContents(count)
{
	try
	{
		clearTimeout(holding);
	}
	catch ( nope )
	{
		//;	
	}
        if ( count > 0 )
        {
            document.getElementById("cartContents").style.display="block";
        }
        
}	
function hideCartContents()
{
	holding = setTimeout('hide()','1500');
}	

function hide()
{
	document.getElementById("cartContents").style.display="none";	
}
