// Rollover effect using css and javascript.

function bgchange(object){
	object.style.backgroundColor='#EDEBDF'
	object.style.color='#5A678A'

	var isNS6 = (navigator.userAgent.indexOf("Gecko") > 0) ? 1 : 0;
	
	if (isNS6) {
		object.style.cursor='pointer'
	}
}


function bgrevert(object){
	object.style.backgroundColor='#5A678A'
	object.style.color='#ffffff'
	
	var isNS6 = (navigator.userAgent.indexOf("Gecko") > 0) ? 1 : 0;
	
	if (isNS6) {
		object.style.cursor='pointer'
	}
}
