


$(document).ready(function(){

	//--- Link target _blank ---------------------------------------------------------------------
	$('a').each(function(i,a){
		if($(a).attr('rel')=='blank')
			$(a).attr('target','_blank');				 
	});
	
	//--- Sharpscroll ----------------------------------------------------------------------------
	$('.sharpscroll').click(function(e){
		e.preventDefault();
		var dest = $(this).attr('href').match(/#(.*)/);
		$(window).scrollTo( $('a[name='+ dest[1] +']') , 2000 , {easing: 'easeInOutQuart', offset: { top: -236 }} );
	});
	
	//--- Footer ---------------------------------------------------------------------------------
	$('#footer .toggle').click(function(){
		if($(this).hasClass('open')){
			$(this).removeClass('open');
			$('#footer').stop().animate({height: 31},{duration: 1000, easing:'easeOutExpo'});
		}else{
			$(this).addClass('open');
			$('#footer').stop().animate({height: 300},{duration: 1000, easing:'easeOutExpo'});
		}								
	});
	
	
	//--- Player ---------------------------------------------------------------------------------
	flowplayer("a.video", {src: "swf/flowplayer-3.2.7.swf", wmode: 'transparent'},{ 
		clip: {
			autoPlay: false,
			autoBuffering: true
		}
	});
	
	
	$('#header').css('opacity', 0.85);

	
});
