var currentPageURL = document.location.href;

if (currentPageURL.indexOf("ShopOnline") != -1) {
	document.write("<script language='javascript' type='text/javascript' src='../../Scripts/NavData2.js'></script>");
} else if (currentPageURL.indexOf("VideoGallery") != -1) {
	document.write("<script language='javascript' type='text/javascript' src='../Scripts/NavData3.js'></script>");
} else {
	document.write("<script language='javascript' type='text/javascript' src='Scripts/NavData1.js'></script>");
} // end if



$(document).ready(function() {
	if (currentPageURL.indexOf("ShopOnline") == -1) {		
		/* StoreSkimmer - Removes currently unneeded store items from navigation */
		var skimmedNav = "<h4>Useful Links</h4>";
		skimmedNav += "<ul>";
		skimmedNav += "<li><a href='ShopOnline/pc/home.html'>Products Home</a></li>";
		skimmedNav += "<li><a href='ShopOnline/pc/viewcategories.html'>Browse Catalog</a></li>";
		skimmedNav += "<li><a href='contactus.html'>Contact Us</a></li>";
		skimmedNav += "</ul>";
		
		document.getElementById("pcMainArea08-LINKS").innerHTML = skimmedNav;
	} else {
		/* StoreSkimmer - Removes currently unneeded store items from navigation */
		var skimmedNav = "<h3>Useful Links</h3>";
		skimmedNav += "<ul>";
		skimmedNav += "<li><a href='viewcategories.html'>Browse Catalog</a></li>";
		skimmedNav += "<li><a href='../../contactus.html'>Contact Us</a></li>";
		skimmedNav += "</ul>";
		
		document.getElementById("pcMainArea08-LINKS").innerHTML = skimmedNav;

	} // end if


$("img").each(function() {
	if (this.src.indexOf("wishlist") != -1) {
		this.style.display="none";
	} // end if

	if (this.src.indexOf("tellafriend") != -1) {
		this.style.display="none";
	} // end if

});



 });

