$(document).ready(function() {
    var pathname = window.location.pathname;
		
	$('#menu a').each(function () {      		
		if (pathname.indexOf(this.pathname)>-1) {
            $(this).parent().siblings().removeClass("active");
			$(this).parent().addClass("active");
        }
    });
	
	 $("#updates h3 a").each(function() {
        $(this).click(function(event) {            
            event.preventDefault();
            $(this).toggleClass("expanded");
            $(this).parent().parent().find("p").slideToggle();
        })
    });
	
	// Highlight menu for product subpage
	if(pathname.indexOf("/product/")>-1) {
		$("#menu ul li").siblings().removeClass("active");
		$("#menu a[href='/products']").parent().addClass("active");
	}
});
