$jQuery = jQuery.noConflict();

jQuery(document).ready(function(){
	
	jQuery("#nav ul ul").hide();
	jQuery(".menu_arrow").hide();
	jQuery(".menu_arrow").click( function(){
		jQuery(this).next("ul").toggle("slow");
	});
	jQuery("#nav li").hover( function(){
		jQuery(this).children(".menu_arrow").fadeIn("fast");
	}, function(){
		jQuery(this).children(".menu_arrow").fadeOut("fast");
	});

});