// JavaScript Document

function toggle_navs () {
    $('.localnav_header').toggle(
        function() {
            $(this).find('.selected').text('1'); //toggle status
            $(this).siblings('.category').find('span').addClass('open_category');
            $(this).siblings('.category').find('.detail').show('slow');
        }, 
        function() {
            $(this).find('.selected').text('0'); //toggle status
            $(this).siblings('.category').find('span').removeClass('open_category');
            $(this).siblings('.category').find('.detail').hide('slow');
        }
    );
}

function toggle_details () {
    $('.category span').toggle(
        function() {
			/* close opened tabs */
			$(this).parent().siblings('.category').find('.open_category').siblings('.detail').hide('slow');
			$(this).parent().siblings('.category').find('.open_category').removeClass('open_category');
			
			/* open tabs */
            $(this).addClass('open_category');
            $(this).siblings('.detail').show('slow');
			
        },
        function() {
            $(this).removeClass('open_category');
            $(this).siblings('.detail').hide('slow');
        }
    );
}

/* activate */
$(document).ready(function() {
    toggle_navs();
    toggle_details();
});