// jQuery plugins //
jQuery(document).ready(function($) {

// Show/Hide //
if(location.hash == '') {
	$('.target').hide();
	$(".target:first").show();
	$(".show:first").addClass('active');
} else {
	$('.target').hide();
	var hash = location.hash.slice(1);
	$('div.' + hash).show();
	$('a.' + hash).addClass('active');
}
$(window).bind('hashchange', function () {
	if(location.hash != '') {
		$('.target').hide();
		var hash = location.hash.slice(1);
		$('div.' + hash).show();
		window.location = location.hash;
	}
	$('.show').removeClass('active');
	$('a.' + hash).addClass('active');
});
$('.toggle').click(function () {
	var hash = location.hash.slice(1);
	$('div.' + hash).toggle();
});

});
