$(document).ready(function(){ 

$("#hoveropn").click( 
				  
	function(){ 
	$("#hover").animate( { height:"100%"}, 2000 ) 
	}
	);

$("#clomenue").click( 
	function () { 
	$("#hover").animate( { height:"3px"}, 2000 ) 
	} 
	); 

});

