$(function() {

	//ascensor
$('#content').ascensor({
	AscensorName:'portfolio',
	WindowsFocus:true,
	WindowsOn:0,
	
	NavigationDirection:'xy',
	Direction: 'y',
	Navig:true,
	Link:false,
	ReturnURL:true,
	PrevNext:true,
	CSSstyles:false,
	
	KeyArrow:true,
	keySwitch:true,
	ReturnCode:false,
	
	ChocolateAscensor:true,
	AscensorMap: '4|4',
	ContentCoord: '1|1 & 1|2 & 1|3 & 1|4 & 2|4 & 3|4 & 3|3 & 3|2 & 3|1 & 4|1'
});


$('#bout').bind('click',function(e){
		e.preventDefault();
		$(this).next().slideToggle();
});

$('.portfolio-image').attr({height:'auto',width:'auto'});

	var h = $('.contenu').height();
	$('.portfolio-image').height(h);


 $(window).bind("resize", function(){//Adjusts image when browser resized
			var h = $('.contenu').height();
	$('.portfolio-image').height(h);
 });
 
 $('#intro').find('.close').bind('click',function(){
	 	$(this).parent().fadeOut();
	 });
	 
	 setTimeout(function(){
		 froogaloop = $f('vimeointro')
		   froogaloop.addEvent('finish', function(data) {
                                 $('#intro').delay('500').fadeOut();
                                });
	
		 },8000);
	
});

