function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

$(document).ready(function() {
	jQuery.ajax({
		type: "GET",
  		url: "ajax_trainart.php",
 		dataType: "html",
		data: "",
  		success: function(response){
            jQuery("#cursuri").html(response);
        },
  		error: function(){
   			alert("Eroare!");
  		}
 	});
});

function pagina(id) {
			jQuery.ajax({
			type: "GET",
  			url: "ajax_trainart.php",
 			dataType: "html",
			data: "pagina="+id+"",
  			success: function(response){
        	    jQuery("#cursuri").html(response);
       	 },
  			error: function(){
   				alert("Eroare!");
  			}
 		});
	}