$(document).ready(function(){
	/**
	 * traitement des liens rev set to ajaxLink
	 */
	$('a[rev=ajaxLinkInAjax]').click(function () { 

		//récupération de l'url
		var hash = this.rel;
		location.hash = hash;

		return false;
	});
});

/**
 * Fonction permettant de gérér l'arrivée des élément AJAX
 * @return false
 */
function arriveeAjax(){
	$('.ajax').hide();
	$('.ajax').fadeIn(500);

	//Applique le scroll bar
	if ($('.box1, .box1Lyrics').innerHeight() > 400){	
		$('.box1, .box1Lyrics').jScrollPane();
	}

	/*
	 * Fonction permettant d'affecter l'effet light box
	 */
	$(function() {  
		$('.light').lightBox(); // Select all links that contains lightbox in the attribute rel
	});
}
