$(document).ready(function () {
    
	$("#extraTeteInfo").hide();
	$("#reglements").hide();
	
	$("#showExtraInfo").click(function(){
		$("#extraTeteInfo").toggle(200);
		return false;
	});
	
	//preload images
    var preload = new Array();
    $('img.roll').each(function (i) {
        //let's preload
        var img = new Image();
        img.src = this.src.replace(/([_-])off([._-])/, '$2over$2');
        preload.push(img);
    });
	$('img.roll').live("mouseover", function () { // over
		$(this).attr('src',this.src.replace(/([_-])off([._-])/, '$1over$2'));
	});
	$('img.roll').live("mouseout", function () { // out
		$(this).attr('src',this.src.replace(/([_-])over([._-])/, '$1off$2'));
	});
	
	$("#dialog").dialog({
		bgiframe: true,
		modal: true,
		autoOpen: false,
		width:460
	});
	
	$("#voirReglements").click(function(){
		$('#dialog').html($("#reglements").html());
		$('#dialog').dialog('option', 'title', $(this).attr('title'));
		$("#dialog").dialog('open');
		return false;
	});
	
	
});


