/*
    File:     $HeadURL: file:///D:/Development/subversion/websites/critchleys.co.uk/assets/js/menu.js $
    Revision: $Rev: 136 $
    Date:     $Date: 2009-09-25 15:18:19 +0100 (Fri, 25 Sep 2009) $
    Author:   $Author: Business $
	
	jquery accordion style menu
    
    Copyright © 2009, Datrim Web Design Ltd. All rights reserved.
*/

$(document).ready(function() {
    $("#nav4 ul").hide();

	if ($("#nav4 li.active ul").show().length == 0) {
		if ($("#nav4 li.default ul").show().length == 0) {
/*			$("#nav4 li:last-child ul").show();*/
		}
	}

    $("#nav4 li ul").parent().children("a").click(function() {
        $(this).parent().prevAll().find("ul").hide();
        $(this).parent().nextAll().find("ul").hide();
        $(this).next("ul:first").toggle();
        this.blur();
        return false;
    });
});


