$(document).ready(function()
{
	$('#navigation a').hoverIntent(function () {
        $(this).animate({
            'top': '-18px'
        }, 200);
    }, function () {
        $(this).animate({
            'top': '0px'
        }, 200, function () {
            $(this).css('top', 0);
        });
    });
});
