function hide_topics() {
    $('.about_topic').hide();
}

function remove_classes(id_to_protect) {
    id_to_protect += '_link';
    $('.about_tab').each( function() {
        if($(this).attr('id') != id_to_protect) {
            $(this).removeClass('open');
            $(this).addClass('close');
        }
    });
}

$(document).ready( function() {
    $('#aboutus01').hide();
    $('#aboutus02').hide();
    $('#aboutus03').hide();
	$('.supporting_images').hide();
	$('#aboutus04_images').show();

    $('#aboutus01_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
			$('.supporting_images').hide();
			$('#aboutus01').show();
			$('#aboutus01_images').show();
        }
        remove_classes('aboutus01');
    });

    $('#aboutus02_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
			$('.supporting_images').hide();
			$('#aboutus02').show();
			$('#aboutus02_images').show();
        }
        remove_classes('aboutus02');
    });

    $('#aboutus03_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
			$('.supporting_images').hide();
            $('#aboutus03').show();
			$('#aboutus03_images').show();
        }
        remove_classes('aboutus03');
    });
	
	$('#aboutus04_link').click(function() {
        if($(this).hasClass('open') == false) {
            $(this).removeClass('close');
            $(this).toggleClass('open');
            hide_topics();
			$('.supporting_images').hide();
            $('#aboutus04').show();
			$('#aboutus04_images').show();
        }
        remove_classes('aboutus04');
    });

    $('.img_franchise').click(function() {
	    if($('#aboutus02_link').hasClass('open') == false) {
			$('#aboutus02_link').removeClass('close');
			$('#aboutus02_link').toggleClass('open');
			hide_topics();
			$('.supporting_images').hide();
            $('#aboutus02').show();
			$('#aboutus02_images').show();
        }
        remove_classes('aboutus02');
    });
});
