function include_dom(script_filename) {
    var html_doc = document.getElementsByTagName('head').item(0);
    var js = document.createElement('script');
    js.setAttribute('language', 'javascript');
    js.setAttribute('type', 'text/javascript');
    js.setAttribute('src', script_filename);
    html_doc.appendChild(js);
    return false;
}

function path_has(query) {
	var sPath = window.location.pathname;
	
	if (sPath.indexOf(query)>=0) {
		return true;
	} else {
		return false;
	}
}


function clearBox(el) {
	el.value = "";
	el.style.color = "#000";
}

function init() {

var sPath = window.location.href;
var spl = sPath.length;

if (path_has("SearchResults.asp") || path_has("_s/")) { //category page / search results
	include_dom("/v/vspfiles/templates/BigMens/js/category.js"); 
} 

if (path_has("_p/") || path_has("ProductDetails")) { //product page
	include_dom("/v/vspfiles/templates/BigMens/js/product.js"); 
} 

document.getElementById("content").style.display = "block";

}

window.onload = init; 