// STD Window Staus
window.Status = "";

function normal(image_name, image_src) {
    eval(document[image_name]).src = 'imgs/site_elements/menu/' + image_src + '.gif'; 
}

function over(image_name, image_src) {
	
	image = image_src.split("_");
	//alert(image[0]);
	
    eval(document[image_name]).src = 'imgs/site_elements/menu/' + image[0] + '_ov.gif'; 
}

function changeBGColor(id, color, id2, color2){

	document.getElementById(id).style.backgroundColor = color;
	document.getElementById(id2).style.color = color2;
}
