/* Author: 

*/
$('div#about_tab').click(function(e){
    e.preventDefault();

    if($('div#pusher').hasClass('closed'))
    {
    	$('div#pusher').animate({marginTop: '360px'});
    	//$('div#video iframe').animate({marginTop: '-38px'});
    	$('div#pusher').removeClass('closed');
    }
    else
    {
    	$('div#pusher').animate({marginTop: '0'});
    	//$('div#video iframe').animate({marginTop: '-400px'});
    	$('div#pusher').addClass('closed');
    }
    
});

$('a#view_reel').click(function(e){
    e.preventDefault();
    
    var playerIframe = document.getElementById("vimeo_showreel");
	playerIframe.api("api_play");
	
	$.scrollTo('div#video', 800);
    
});









