$("a[rel='gallery']").colorbox({transition:'fade', speed:400,current:""});

$(function(){
    $('a.external').click(function(){
        window.open($(this).attr('href'));
        return false;
    });
});

$(document).ready(function()
{
	$(".biosWrapp").hide();
	$(".menuBio li:first").addClass("active").show();
	$(".biosWrapp:first").show();

	$("ul.menuBio li").click(function()
       {
		$("ul.menuBio li").removeClass("active");
		$(this).addClass("active");
		$(".biosWrapp").hide();

		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});
	
	
}); 

