//>----------------------------------------------------------------------------------------------

function makeSelected(sHref)
{
	$("a[href=" + sHref + "]").addClass("selected");
}

//>----------------------------------------------------------------------------------------------

$(document).ready(function(){
	$("img").attr("onMouseDown", "return false").attr("onMouseMove", "return false");
	$("a[rel='img']").colorbox({
		transition:"none",
		opacity:0.5,
		current:"",
		previous:"Précédant",
		next:"Suivant",
		close:"Fermer"
	});
});

//>----------------------------------------------------------------------------------------------

