var $j = jQuery.noConflict();

$j(document).ready(function() {
    $j('ul#menu li').hover(function() {
    	$j(this).animate({ top : "-=10px" }, 150);
    }, function() {
    	$j(this).animate({ top : "15px" }, 150);
    });
});
