/* 
 *Creator: Richard Kotze - www.rk1webdesigns.co.uk
 *For: Braintree Golf Club
 *Date: 21 March 2009
 *using the jquery lib
 */

$(document).ready(function(){
    $(".cat").click(function(){
        //if($(this).attr('href') == "#"){
          $(this).next(".catItem").slideToggle();
          if($(this).text().indexOf("+") != -1){
            $(this).children(".navsign").text("-");
          }else{
            $(this).children(".navsign").text("+");
          }
        //}
	});
    $(".selCat").next(".catItem").slideDown();
});

