var $j = jQuery.noConflict();
$j(document).ready(function(){
$j('nav li ul').css({
	     display: 'none',
		 left: 'auto'
		 });
    $j('nav li').hoverIntent(function() {
	     $j(this)
		     .find('ul')
			 .stop(true, true)
			 .slideDown('slow')
    }, function () {
	     $j(this)
		      .find ('ul')
			  .stop(true, true)
			  .fadeOut('fast');
    });
});


