
//Displays a product tab on the products page
function productTab(tab)
{
	
	
	for(var i=0; i<10; i++)
	{
		if(i==tab)
		$("#productTab"+i).show();

		else
		$("#productTab"+i).hide();
	}
	
	return false;
}


function getProduct(type)
{

/*
	//alert(type);
	
	var page = '';
	
	switch(type)
	{
		case 'about': page='about.html'; break;
		case 'oval': page='oval.html'; break;
		case 'drag': page='drag.html'; break;
		case 'marine': page='marine.html'; break;
		case '4c': page='other.html'; break;
		case 'other': page='other.html'; break;
	}
	
	var path = '/pages/static/'+page;
	
$('#product_space').load(path, function(response, status, xhr) {
	if(status=='400')
{
   // jQuery('a[rel^=lightbox]').prettyPhoto({theme:'facebook'});
}






});

*/


window.location='index.php?go=products&type='+type;
}




function popup(text)
{
	var container = "<table cellspacing='0' cellpadding='0' width='269'><tr><td class='popup_top'></td></tr><tr><td class='popup_mid' valign='top'>"+text+"</td></tr><tr><td class='popup_bottom'></td></tr></table>";
	
	
	overlib(container);
}



function largeVideo(vidId)
{


var url = "/flash/video_large.php?vid="+vidId+"&TB_iframe=true&width=550&height=400";
tb_show("", url);

}
