function init(v)
{
	if(v != '')
	{
		var l = ['nav_web_app','nav_showcase','nav_about','nav_contact','nav_home','nav_products','nav_dev','nav_pricing'];
		for(var i=0; i<l.length;i++)
		{
			if(l[i] != v)
			{
				$(l[i]).onmouseover = nav_toggle_on;
				$(l[i]).onmouseout = nav_toggle_out;
			}
		}
		if(v) $(v).className = 'nav_button_on';
	}

		
	try
	{
		fixColumns();
	}
	catch(e)
	{
		
	}
}
function nav_toggle_on()
{
	this.className = 'nav_button_on';
}
function nav_toggle_out()
{
	this.className = 'nav_button_off';
}

function fixColumns()
{
	var h1 = $('main_content').offsetHeight;
	var h2 = $('side_content').offsetHeight;
	var max = (h1 > h2) ? h1 : h2;
	$('main_content').style.height = max + "px";
	$('side_content').style.height = (max + 24) + "px";
}

function overrideContent()
{
	window.location = 'members.php?override=' + this.value;
}

function pauto_link()
{
	$('pauto').onmouseover = pauto_glow;
	$('pauto').onmouseout = pauto_unglow;
}
function pauto_glow()
{
	this.src = 'images/pauto2007.gif';
}
function pauto_unglow()
{
        this.src = 'images/pauto2007_glow.gif';
}

function cauto_link()
{
        $('cauto').onmouseover = cauto_glow;
        $('cauto').onmouseout = cauto_unglow;
}
function cauto_glow()
{
        this.src = 'images/carcauto.gif';
}
function cauto_unglow()
{
        this.src = 'images/carcauto_glow.gif';
}


function order_bind()
{
	/*
	$('shop').style.display = 'block';
	$('shop_cart').style.display = 'none';
	$('shop_button').onclick = show_cart;
	*/
}

function show_cart()
{
	$('shop').style.display = 'none';
	$('shop_cart').style.display = 'block';
}
