// Toggle view
$(function(){

	if ($('#content h4 a').hasClass('show')) {
    	$(".toggle-view").show();
	}
	
	if ($('#content h4 a').hasClass('hide')) {
    	$(".toggle-view").hide();
	}	

    $('.show, .hide').click(function(){   
		
        //find the surrounding div
        var fullblock = $(this).parent().parent();
		
        //find the correct elements within the location block
        $(".toggle-view",fullblock).slideToggle("slow");

		$('#content h4 a.show').not(this).toggleClass('show').toggleClass('hide').parent().parent().find('> .toggle-view').slideToggle('slow');
		$(this).toggleClass('show').toggleClass('hide');
    });

});
