$(document).ready(function(){
	$(".gallery a[rel^='lightbox']").lightBox({
		imageLoading:	'http://www.vtt-avoriaz.fr/wp-content/themes/gen20xx/images/lightbox-ico-loading.gif',
		imageBtnPrev:	'http://www.vtt-avoriaz.fr/wp-content/themes/gen20xx/images/lightbox-btn-prev.gif',
		imageBtnNext:	'http://www.vtt-avoriaz.fr/wp-content/themes/gen20xx/images/lightbox-btn-next.gif',	
		imageBtnClose:	'http://www.vtt-avoriaz.fr/wp-content/themes/gen20xx/images/lightbox-btn-close.gif',
		imageBlank:	'http://www.vtt-avoriaz.fr/wp-content/themes/gen20xx/images/lightbox-blank.gif'	
	});	
	$('ul#fader').cycle({
		fx: 'fade', 
		sync:1,
		pause:1,
		before: onBefore, 
		after: onAfter,
		timeout: 8000
	});		
	$("#taglines2").css({'top': "250px"});
	function onBefore() { 
		$("#taglines2").animate({'top': "250px"}, 'slow');
	} 
	function onAfter() { 
		var heading = $(this).children().attr("title"); 
		var URL = $(this).children().attr("longdesc"); 
		var description = $(this).children().attr("alt"); 

		// This is the figure to amend to change the height of the text overlay.
		$("#taglines2").animate({'top': "140px"}, 'slow');
		$('#taglines2').html('<a href='+ URL + '><h3>' + heading + '</h3></a>' + '<p>'+ description + '</p>'); 
	}

	// START :  added by rm for video popups
	$(".vidbox").jqvideobox();
	// END :  added by rm for video popups	

})
