// JavaScript Document
function cms_editRollOver(id)
{	
	document.getElementById(id).style.backgroundColor = '#CCCCCC';
	document.getElementById(id).style.cursor='pointer';
	return true;
}

function cms_editRollOut(id)
{	
	document.getElementById(id).style.backgroundColor = '#FFFFCC';
	return true;
}

function cms_editContent(id)
{
	document.location = 'pm_motors/pmm_myCMS/cms4d1f.html?cmsAction=edit&amp;contentID=' + id;
}