/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

$(document).ready(function(){
	//global vars
	var divcours = $("#cours");

  if (divcours && gAccueil){
  $.get('/sites/groupekindy/themes/groupekindy1/cours_ajax.php'
      , function(data){
        divcours.html(data);
      }).error(function(data) {alert(data.responseText);});
  }
});
