var $j = jQuery.noConflict();
var $crew="#crew";
var $t_crew="#crewclick";
var $history="#history";
var $t_history="#historyclick";
var $pubs="#pubs";
var $t_pubs="#pubsclick";
var $prog="#prog";
var $t_prog="#progclick";

$j(document).ready(function(){
  $j($t_crew).click(function () {
        $j($history).fadeOut(500);
        $j($pubs).fadeOut(500);
        $j($prog).fadeOut(500);
        setTimeout('$j($crew).fadeIn(500)', 500);
    });
  
    $j($t_history).click(function () {
        $j($crew).fadeOut(500);
        $j($pubs).fadeOut(500);
        $j($prog).fadeOut(500);
        setTimeout('$j($history).fadeIn(500)', 500);
    });
    
    $j($t_pubs).click(function () {
        $j($crew).fadeOut(500);
        $j($history).fadeOut(500);
        $j($prog).fadeOut(500);
        setTimeout('$j($pubs).fadeIn(500)', 500);
    });

    $j($t_prog).click(function () {
		$j($crew).fadeOut(500);
        $j($history).fadeOut(500);
        $j($pubs).fadeOut(500);
		setTimeout('$j($prog).fadeIn(500)', 500); 
    });
  });