
var site_root = "http://www.lifesmotors.com/";



function rollclass(ref,newclass)
{
	$(ref).className = newclass;
}




function swapimage(img_name,img_url)
{
	$(img_name).src = img_url;
}




function lowlight(obj)
{
	$(obj).className='img_grey70';
}

function highlight(obj)
{
	$(obj).className='img_nogrey';
}

function setImage(img, url,bigurl)
{
//	alert(decodeURIComponent(url));
	$(img).src=decodeURIComponent(url);
	$('productMainLink').href=decodeURIComponent(bigurl);
}



function setautomenu(txt,id)
{
	$('automenutext').value=txt;
	$('automenuid').value=id;
	Element.show('clearmenu');
}

function clearmenuitem()
{
	$('automenutext').value='';
	$('automenuid').value='-1';
	Element.hide('clearmenu');
}

