function SidePanelSearch() {
	var cat= document.forms[0].ctl00$masterCategoryId.value;
	var scat=document.forms[0].ctl00$ddlSubcategory.value;
	var price=document.forms[0].ctl00$ddlPrice.value;
	var showme="&showme="+document.forms[0].ctl00$ddlShowMe.value;
	if (cat != "" && scat==""){
		document.location = "subcategory.aspx?cat="+cat+showme;
	}else{
		document.location = "search.aspx?cat="+cat+"&subcat=" +scat+"&price="+price+showme;
	}
}


function KeywordSearch() {
	var showme="&showme="+document.forms[0].ctl00$ddlShowMe.value;
	if ($('#tbKeywords').val() != ""){
		document.location = "search.aspx?keywords=" + encodeURI(document.getElementById("tbKeywords").value)+showme;
	}else{
		SidePanelSearch();
		return false;
	}
}

var repeatTimer;
function selectSubcategory(){
	subcatid = "";
	if (typeof(glbSubcatId) != "undefined" && glbSubcatId != null){
		subcatid = glbSubcatId;
	}
	if (subcatid == ""){
		clearInterval(repeatTimer);
	}else if (document.forms[0].ctl00$ddlSubcategory.options.length>1){
		idg_preSelectDropDownList("ctl00$ddlSubcategory", subcatid);
		clearInterval(repeatTimer);
	}
}

function getBasket(e,urlLink){
	idg_turnOffBubbleCapture(e);
	document.location = urlLink;
	return false;
}


$(document).ready(function(){
	$("a#Homepage").click(function(){
		document.location = "default.aspx";
		return false;
	});	
	$("a#ProductRange").click(function(){
		var cat= document.forms[0].ctl00$masterCategoryId.value;
		document.location = "subcategory.aspx?cat="+cat;
		return false;
	});	
	$("a#Branding").click(function(){
		document.location = "branding.aspx";
		return false;
	});	
	$("a#HowToOrder").click(function(){
		document.location = "howtoorder.aspx";
		return false;
	});	
	$("a#ContactUs").click(function(){
		document.location = "contactus.aspx";
		return false;
	});	
	$("a#FirstOrder").click(function(){
		document.location = "firstorder.aspx";
		return false;
	});	
	
	$("a#keywordsearch").click(function(){
		KeywordSearch();
		return false;
	});
	$("a#catsearch").click(function(){
		SidePanelSearch();
		return false;
	});	
	$("div#moreDeal").click(function(){
		document.location='search.aspx?clearance=0';
		return false;
	});
	$("div#divMoreDeal").click(function(){
		document.location='search.aspx?clearance=0';
		return false;
	});
	$("a#hrefBookmark").click(function(){
		var urlAddress = document.location.href; 
		var pageName = js_sitename + " Website"; 
		idg_addToFavorites(urlAddress,pageName);
		return false;
	});

	
	$('#tbKeywords').focus();
	
	//OnloadEvent
	if ($("#ctl00_masterCategoryId").val() != "" && document.forms[0].ctl00$ddlSubcategory.options.length == 1){
		idg_GetSubCategory('ctl00$masterCategoryId','ctl00$ddlSubcategory');
		repeatTimer = setInterval("selectSubcategory()",100);
	}
	

});