$(document).ready(function(){
   $('#navigation > .page_item > a').click(function () {
		if ( $(this).parent().children('ul').size() > 0 ) {
			if($(this).attr('href')=='#') {
				$(this).parent().find('ul').slideToggle('slow', function() {});	
			}
			else {
				return true;
			}
		}
   });
   
   $('#navigation_c > .cat-item > a').click(function () {
		if ( $(this).parent().children('ul').size() > 0 ) {
			$(this).parent().find('ul').slideToggle('slow', function() {
				
			});	
			return false;
		}
   });   
 });

