

function initMenus() {
	jQuery('ul.menu ul').hide();

	jQuery.each(jQuery('ul.menu'), function(){
		jQuery("li[class*=current_page_item]").parents('ul').show();
		jQuery("li[class*=current_page_item]").children('ul').show();
	});

	//jQuery('ul.menu li:has(ul) a').click(
	//	function() {
	//		var checkElement = jQuery(this).next();
	//		var parent = this.parentNode.parentNode.id;
    //
	//		if(checkElement.is('ul')) {
	//			jQuery(this).next().slideToggle('fast');
	//			return false;
    //
	//			return false;
	//		}
	//	}
	//);
}

jQuery(document).ready(function() {
		// Init Main Menu
		initMenus();

		// Trick to add bgcolor and bgimage to a link
		jQuery("#menu1 a").wrapInner("<span></span>");

		// Used for swapping top small icons
		jQuery.swapImage(".swapImage");
});