var activeTabID	=	1;
		
function toggleTab(id) 
{
    $('tab' + activeTabID).setStyle({backgroundColor: '#ffffff'});
    $('tab' + activeTabID + '-content').hide();
    $('tab' + id).setStyle({backgroundColor: '#cccccc'});
    $('tab' + id).onmouseover	=	function(){};
    $('tab' + id).onmouseout	=	function(){};
    $('tab' + id + '-content').show();

    activeTabID	=	id;
}




_uacct = "UA-183824-2";
urchinTracker();