function index_mouse_over(obj)
{
	obj.style.backgroundColor = "#FFF";
	obj.style.fontWeight = "bold";
	obj.style.color = "#B35353";
}
function index_mouse_out(obj)
{
	obj.style.backgroundColor = "#FFF";
	obj.style.fontWeight = "normal";
	obj.style.color = "#333";
}
function updateBOM()
{
		var bomURL = '/index/bom.php';
		var httpObj = new Ajax.Request( bomURL, 
										{
										method: 'get',
										parameters: '',
										onComplete: setBOM
										});
}
function setBOM(originalRequest) 
{
	$('bom_block').innerHTML = originalRequest.responseText;
}

