$(function(){
	var params = {
		wmode: 'transparent'
	};

	$("a.popup").fancybox();

	swfobject.embedSWF("/splash_fr/flash/video.swf", "player", "992", "597", "9.0.0", null, null, params);
	$('#fleche').css({'background-position': '0px -24px'});

	$('#fleche').bind('click', function(e){
		if($('#tgs-content').height() > 54){	
			$('#tgs-content').animate({ height: 54 },{ queue: false, duration: 500 });
			$('#fleche').css({'background-position': '0px 0px'});
		}else{
			$('#tgs-content').animate({ height: 269 },{ queue: false, duration: 500 });
			$('#fleche').css({'background-position': '0px -24px'});
		}
	});
});

function hideTG(){
	$('#tgs-content').animate({ height: 54 },{ queue: false, duration: 500 });
	$('#fleche').css({'background-position': '0px 0px'});
}
