function changebg(option,id){
	if(option =="hover"){
		$(id).addClassName('btnhover');
	}
	else{
		$(id).removeClassName('btnhover'); 
		
	}
}
