var $j = jQuery.noConflict();
$j(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    $('#staff').tabs();
    $("#staff").bind("tabsshow", function(event, ui) { 
        window.location.hash = ui.tab.hash;
    });
    
	$('#home-intro p').not('#slide1').hide();
});

$j(window).load(function($) {
    $j('#home-intro').cycle({
		timeout	:	4000, // time between transitions
		speed	:	1200, // transition speed
		nowrap	:	1, // Don't start over again
		delay	:	0, // Additional delay for 1st slide
		cleartype: 1 // Cleartype for IE7
    });
});	
