// Custom JS for show

$(document).ready(function(){
	
	//alert('custom');
	
	$('.bioBtn').live('click', function() {
		
		$('.bioBtn').removeClass('bioSel');
		
		$(this).addClass('bioSel');
		
		$('.'+$(this).attr('hide')).hide();
		$('#'+$(this).attr('show')+'_title').fadeIn('fast');
		$('#'+$(this).attr('show')).fadeIn('fast');
		
		$(this).blur();
		return false;
	});
	
});
