$(document).ready(function(){
$("#headerTxt p a").hover(
		function(){ $(this).stop().animate( { color: '#6ec3ff' }, 500);}, 
		function(){ $(this).stop().animate({color : '#ffffff'}, 500);}
	);

});

$(function(){

	$("a.fancy").fancybox({
		'scrolling'		: 'no',
		'titleShow'		: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic'
	});
	$("a.fancyFrameNews").fancybox({
		'width'		: 280,
		'height'		: 120,
		'autoScale'	: true,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'type'		: 'iframe'
	});
	$("a.fancyFrameReprise").fancybox({
		'width'		: 750,
		'height'		: 530,
		'autoScale'	: true,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'type'		: 'iframe',
		'padding' : 0
	});
	
	$('.fancyFicheOcc').fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + ' - ' + title + '</td><td id="fancybox-title-float-right"></td></tr></table>';
		},
		'cyclic'			: true
	});
	$('.fancyFicheVn').fancybox({
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
		    return '<table id="fancybox-title-float-wrap" cellpadding="0" cellspacing="0"><tr><td id="fancybox-title-float-left"></td><td id="fancybox-title-float-main">' + title + ' - Image ' + (currentIndex + 1) + ' / ' + currentArray.length + '</td><td id="fancybox-title-float-right"></td></tr></table>';
		}
	});

	$("ul.newsticker").liScroll({travelocity: 0.05});
});


