// JavaScript Document
$(document).ready(function(){
	$("div#ScroldCartWrp").hoverIntent(function(){
		$("div#ItemsWrp").slideDown("fast");
		},function(){
		$("div#ItemsWrp").slideUp("fast");
	});
});



function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}
function ShowContent(d,e) {
if(d.length < 1) { return; }
document.getElementById(e).style.display = "none";
document.getElementById(d).style.display = "block";

}


function ReverseContentDisplay(d) {
if(d.length < 1) { return; }
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}


