jQuery.noConflict();  
jQuery(document).ready(function($) {
  	
 	
  	$('#menu-main > li, #subnav > li').live('click', function(){
		if($(this).children('ul').length > 0)
		{
			$('.sub-menu, .children').hide();
			$(this).children('ul').show();
			return false;
			
		}
  	
  	});
  	
  	 $('html').click(function() {
		$('.sub-menu, .children').hide();
	 });

	 $('.sub-menu, .children').click(function(event){
		 event.stopPropagation();
	 });
});
//)(jQuery);

var $ = jQuery;



