/*	
	initialise scripts
*/

$(document).ready(function(){
	/* Zebra Striping for Tables */					   
	$(".listing tbody tr:nth-child(even)").addClass("even");
	
	/* Load Facebox */	
	//$('a[rel*=facebox]').facebox();
	
	// table sorter
	//$("#myTable").tablesorter(); 

	/* Closing Divs */
	$(".canhide").append("<div class='close-message'>Fermer</div>").css("position", "relative");
	$(".close-message").click(function() {
		$(this).hide();
		$(this).parent().fadeOut(600);
	});

	// setup ul.tabs to work as tabs for each div directly under div.panes
    $("ul.tabs").tabs("div.panes > div");
	
	
});

//  ======= confirmer =====
function confirmed(msg){
 var a = window.confirm("voulez vous r\351ellement supprimer cet \351l\351ment ?\n"+msg);
 return a;
}

