// JavaScript Document

/**** Bookmark *****/
function BookmarkSite()
{
	var title = "Drummond Golf Online Superstore";
	var url = "http://shop.drummondgolf.com";
	if (window.sidebar) // Mozilla Firefox Bookmark
	{ 
		window.sidebar.addPanel(title, url,"");
	} 
	else if( window.external ) // IE Favorite
	{ 
		window.external.AddFavorite( url, title); 
	}
	else if(navigator.userAgent.toLowerCase().indexOf('mac')!=-1) // Safari
	{ 
		alert("Press Command-D to bookmark this site in Safari");
	}
}
/**** Bookmark End *****/


function show_tab (ind)
{
	for (var i = 1; i < tabs.length; i++)
	{
		document.getElementById (tabs[i][0]).className ="tabb";
		document.getElementById (tabs[i][1]).className = "hidden_tab_box tab_box_body";
	}
	document.getElementById (tabs[ind][0]).className ="tabb selected";
	document.getElementById (tabs[ind][1]).className = "shown_tab_box tab_box_body";
	
}
