$(document).ready( function () { 	

$(".gotodesc").click(function() {
  displayCurrentFormateur($(this).attr('id'));
});	

$("#viewformateurs").click(function() {
  displayallFormateurs();
});

$(".add-offre-btn").click(function() {
  openModalBoxOffre();
  return false;
});
	
} ) ;

function displayCurrentFormateur(id){
$('.formation-block').hide();
$("#viewformateurs").fadeIn('slow');

$('#formation-desc-'+id).fadeIn('slow');

return false;

}

function displayallFormateurs(){
$('.formation-desc').hide();
$("#viewformateurs").hide();
$('.formation-block').fadeIn('slow');

}



function openModalBoxOffre(target){

$('#addoffreform').modal();

}
