var mtzr = jQuery.noConflict();

mtzr(document).ready(function() {
	mtzr.getJSON("/foto.php", { 
							time: "2pm"
						},
		function(json){
			//alert(json);
			var rand_no = Math.floor((json.length-1)*Math.random()) + 1;
			//alert(rand_no);
			//alert(json[rand_no].img +" "+json[rand_no].title);
			var title = json[rand_no].title;
			title = title.replace('[b]', '<b>');
			title = title.replace('[/b]', '</b>');
			mtzr("#emotional #dida-emo p").html(title);
			mtzr("#emotional #image-emotional").attr('src', json[rand_no].img);
		}
	);
	
});
