//global.js
$(document).ready(function(){
	
});
function showSubNav(id){
	$('#sub_nav_2').hide();
	$('#sub_nav_1').hide();
    var div_id = '#' + id;
    $(div_id).show();
}
function hideSubNav(id){
    var div_id = '#' + id;
    $(div_id).hide();
    var url = window.location.href.split("?")[0];
	if( url.indexOf("events") != -1 || url.indexOf("event") != -1 ){
		$('#sub_nav_1').show();
	}
	if(url.indexOf("members") != -1){
		$('#sub_nav_2').show();
	}
}
