 jQuery.noConflict();
 
 jQuery(document).ready(function() {
    setInterval("update()", 5000);
  });
 
function update(){ 
	jQuery.ajax({
	  url: "http://www.radiocrc.com/ajax/clock.php",
	  cache: false,
	  dataType: "json",
	  success: function(html){
		 
		jQuery("#orario_b").text(html.orario);
		jQuery("#data_b").text(html.data);
		jQuery("#scheda_b").html("<a href=\"http://www.radiocrc.com/index.php?p=programmi&id=" + html.idp + "\"  title=\"\" class=\"scheda_b\">scheda</a>");
	  	jQuery("#foto_b").html("<img src=\"res_gallery.php?img="+ html.immagine + "\" alt=\"\" />");
		jQuery("#titolo_b").text(html.programma);
		jQuery("#staff_b").text(html.conduttore);
		jQuery("#ora_b").text(html.tempo);
	  
	  }
	});
	
}

     function open_popup(apri, stile) {
        window.open(apri, "", stile);
     }	 
 
