 $(document).ready(function(){
					   

		
		$("#otc").hover(
			function(){
				
				$(this).css("background-color","#e4ebc5")	
		
			},
			function() {
				$(this).css("background-color","#edf5cb")	
			}
		
		);
		
 });