var $j = jQuery.noConflict();

     // Use jQuery via $j(...)
     $j(document).ready(function(){
 		$j("#nav-reflection a").hover(function() {
		    $j(this).stop().animate({ marginTop: "-20px", height:"45px" }, 300);
		},function(){
		    $j(this).stop().animate({ marginTop: "0px", height:"25px" }, 300);
		});
     });

     // Use Prototype with $(...), etc.
     $('#nav-reflection').hide();