jQuery(document).ready(function () {
	/* -- navigation dropdown -- */
	jQuery('#wrapper_nav .menu ul.sub-menu').css({
		display:"none",
		left:"auto"
	});

	jQuery('#wrapper_nav li').hover(function(){
		jQuery(this).find('ul').stop(true, true).fadeIn('fast');
	}, function() {
		jQuery(this).find('ul').stop(true, true).fadeOut('fast');
	});
});
