//JQUERY$(document).ready(function(){	location.hash = '';		//TABS	var tabContainers = $('#tabs > div');	tabContainers.hide().filter(':first').show();		$('#tabs ul.tab_navigation a').click(function () {		tabContainers.hide();		tabContainers.filter(this.hash).show();		$('#tabs ul.tab_navigation a').removeClass('selected');		$(this).addClass('selected');				location.hash = '#/' + String($(this).html()).replace('<span>&nbsp;</span>', '').replace(' ', '-');				return false;	});		//READ FULL	$('a.more').click(function(){		var bio_id = $(this).attr('rel');		if($(this).hasClass('arrow_on')){			$('#bio'+bio_id+" em").fadeOut('fast',function(){				$('#bio'+bio_id+" b").show();				});							$(this).removeClass('arrow_on');		}else{				$('#bio'+bio_id+" b").hide();			$('#bio'+bio_id+" em").fadeIn('fast');			$(this).addClass('arrow_on');		}		return false;	});		// TOGGLER		$(".toggler").click(function(){		if ($('#'+$(this).attr("rel")).css('display')=='none') {		$(".toggled").hide();		$('#'+$(this).attr("rel")).slideToggle("800");		} else {			$('#'+$(this).attr("rel")).slideToggle("800");		}		return false;	});		// CLOSE		$(".close").click(function(){		$('#'+$(this).attr("rel")).slideToggle("800");						 		return false;	});		//PHOTO MODAL	if ($("a.photo_viewer").length > 0) {		$("a.photo_viewer").overlay({expose: '#000', top: 'center'});	}	});
