$(document).ready(function() {
	// --------
    // Meet the team
	// --------
  	$('#the-team div.bio').hide();  
    $('#the-team  h3').click(function() {

		$(this).next('div').slideToggle('slow')
		.siblings('div:visible').slideUp('slow');
	
    });

   $('#the-team h3').mouseover(function() {
        $(this).addClass('over');
    });
    $('#the-team h3').mouseout(function() {
        $(this).removeClass('over');
});

// --------
// portfolio cycle
// --------
$('#campaign') 
.after('<div id="port-nav">') 
.cycle({ 
    fx:     'fade', 
    speed:  'slow', 
    timeout: 0, 
    pager:  '#port-nav' 
});

// --------
// Embed Flash
// -------
$('#home #hero').flash({
    src: 'swf/home.swf',
    width: 500,
    height: 240
});

$('#marketing-man #hero').flash({
    src: '/swf/marketingman.swf',
    width: 500,
    height: 240
});



});


