// JavaScript Document
$(document).ready(function () {  
  
    $('#about').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#about li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#about ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#about li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#about ul.children').hide();  
                  
        }  
          
    );  
          
});  


$(document).ready(function () {  
  
  
	
	$('#membership').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#membership li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#membership ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#membership li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#membership ul.children').hide();  
                  
       } 
	   
	);  
});

$(document).ready(function () {  
  
    $('#fitness').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#fitness li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#fitness ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#fitness li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#fitness ul.children').hide();  
                  
        }  
          
    );  
          
});  

$(document).ready(function () {  
  
  
	
	$('#youthservices').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#youthservices li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#youthservices ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#youthservices li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#youthservices ul.children').hide();  
                  
       } 
	   
	);  
});

$(document).ready(function () {  
  
  
	
	$('#sports').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#sports li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#sports ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#sports li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#sports ul.children').hide();  
                  
       } 
	   
	);  
});


$(document).ready(function () {  
  
    $('#climbinggym').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#climbinggym li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#climbinggym ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#climbinggym li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#climbinggym ul.children').hide();  
                  
        }  
          
    );  
          
});  

$(document).ready(function () {  
  
    $('#news').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#news li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#news ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#news li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#news ul.children').hide();  
                  
        }  
          
    );  
          
});  

$(document).ready(function () {  
  
    $('#contactus').hover(  
          
        function () {  
  
            //change the background of parent menu                
            $('#contactus li a.parent').addClass('hover');  
                  
            //display the submenu  
            $('#contactus ul.children').show();  
                  
        },  
          
        function () {  
  
            //change the background of parent menu  
            $('#contactus li a.parent').removeClass('hover');              
  
            //display the submenu  
            $('#contactus ul.children').hide();  
                  
        }  
          
    );  
          
});  
