
$(document).ready(function(){
	
	$('#top_menu a.item').hover(function(){
		//alert('bum');
		$(this).animate({
			color:'white',
			backgroundcolor:'#FF8619',
			position:'relative',
			top:'-2px',
			padding:'2px 10px 4px 10px'}, 'fast'
		);
	},
	function(){
		$(this).animate({
			color:'white',
			backgroundcolor:'#8B9196',
			padding:'2px 10px',
			top:'0'}, 'fast'
		);
	});

});

