jQuery(function($) {
	$('#ccMainMenu a').hover(function() {
		$(this).stop(true).animate({ top: 0  }, 100 );
	}, function() {
		$(this).stop(true).animate({ top: -5 }, 100 );
	});
});
