/*
======================================================================
 Liquid Nails: Product detail page JavaScript.
======================================================================
*/

var my_tabs;

// Initializes the tabs.
//
function my_initTabs() {

	// Find the starting tab.
	var startTab = 0;
	if ( window.location.href.endsWith( '#msdsTech' ) ) {
		startTab = 1;
	} else if ( window.location.href.endsWith( '#appTips' ) ) {
		startTab = 2;
	} else if ( window.location.href.endsWith( '#buyOnline' ) ) {
		startTab = 3;
	} // End if.

	my_tabs = new Tabs( 'my_tabContainer' );
	my_tabs.selectTab( startTab );

} // End my_initTabs().

function my_openDemo( url ) {

	window.open( url, '',
		  'toolbar=no,location=no,status=no,menubar=no,'
		+ 'scrollbars=yes,resizable=yes,width=629,height=511' );

} // End my_openDemo().
