//Resell


$(document).ready(function(){
	//Show first tab on page load
	$("#tabs ul.tabheads li:first a").addClass("active");
	$("#tabs " + $("#tabs ul.tabheads li:first a").attr("href")).show();
	
	var itemindex = "#tab1";
	
	$("#tabs ul.tabheads li a").click(function(){
		//Show corresponding tab
		//console.log($(this).attr("href"));
		$("#tabs ul.tabheads li a").removeClass("active");
		$("#tabs .tabcontainer .tabtext").hide();
		$(this).addClass("active");
		$("#tabs " + $(this).attr("href")).show();
		return false;
	});
	
});


//For Find a Reseller

$(document).ready(function(){
	//Show first tab on page load
	$("#tabsReseller ul.tabheads li:first a").addClass("active");
	$("#tabsReseller " + $("#tabsReseller ul.tabheads li:first a").attr("href")).show();
	
	var itemindex = "#tab1";
	
	$("#tabsReseller ul.tabheads li a").click(function(){
		//Show corresponding tab
		//console.log($(this).attr("href"));
		$("#tabsReseller ul.tabheads li a").removeClass("active");
		$("#tabsReseller .tabcontainer .tabtext").hide();
		$(this).addClass("active");
		$("#tabsReseller " + $(this).attr("href")).show();
		return false;
	});
	
});
