
function show_carrousel_big(image_id, model)
{
	jQuery("#aaa").html('<div class="transparencia abs-aaa"><img src="images/loading_negro.gif" class="sepa-aaa"  id="photo_preload"/></div>');

	jQuery.ajax({
		url: '/'+model+'/renderCarrouselBig',
	    cache: false,
	    async: true,
	    type: "POST",
	    data: "image_id="+image_id,
	    success: function(html){
		jQuery("#photo_big").html('<div id="aaa" style="position:absolute;"></div><img src="uploads/'+model+'/'+html+'"');
	   	}
	});
}

function renderOthers(id)
{	
	jQuery.ajax({
		url: '/lcd/getJson',
	    cache: false,
	    async: true,
	    dataType: "json",
	    data: "id="+id,
	    success: function(res){
		
			alert(res.file);
			
			$("#file").html(obj.file);
			$("#video").html(obj.video);
			$("#description").html(obj.description);
			
	   	}
	});
}

