window.onload = function(){ 

//// MANUAL CLICK RIGHT TAB HERO
	/// Parse URL
	function gup(name){
		name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");  
		var regexS = "[\\?&]"+name+"=([^&#]*)";  
		var regex = new RegExp( regexS );  
		var	results = regex.exec( window.location.href );  
		if( results == null )    return "";  
		else    return results[1];
	}
	
	/// Test for Product ID
	var productTab;
	productTab = gup('productID');
	if (productTab == "") {
		tabValue = "tab-turkey-and-cheddar-sub";
	} else {
		tabValue = "tab-" + productTab;
	}
	//alert(tabValue);
	var CurrentTab = document.getElementById(tabValue);
	if (CurrentTab == "" || CurrentTab == null) {
		return "";
	} else {
		CurrentTab.className = "active";
	}
	
	
//// MANUAL CLICK RIGHT TAB HERO

}
