/* JavaScript */

/* jQuery Menu Funtions */
/* Using "toggle" to create an accordion menu */
$(function(){ 		   
	$('#menu ul').show();						/* Show all menus */
	/* $('#menu ul:last').show();      			Show only last menu when others are hidden */
	$('#menu li ul li ul').hide();		/*Hides the 2nd level Navigation */
	/*$('#menu ul li ul li').hide();			 Hides the 2nd level Navigation */

	$('#menu li.toggle a.slider').click(	
	function() { 
		$(this).next().slideToggle('normal')
		return false;							/* Ensures page doesn't jump back to top */
	});

/*
	$('#menu li ul li.toggle a.slider').hover( function() { 
		$(this).next().slideToggle('normal');
		return false;		
	}, function() {
		$(this).next().slideToggle('normal');
		return false;				
	});	
	
	$("#menu li:last").hover(function () {
      $(this).css({ backgroundColor:"3a96ff" });
    }, function () {
      var cssObj = {
        backgroundColor: "#efefef",
      }
      $(this).css(cssObj);
    });
	*/
	$("#menu li:last").attr('class', 'last-li');
	$("#menu a:last").attr('class', 'last');
});
 
	
	

