function detalle_noticia(valor){
	var valores=valor.split('||');
	var id_categ=valores[0];
	var id_produ=valores[1];
	$.ajax({
	   async:true,
	   type: "POST",
	   dataType: "html",
	   contentType: "application/x-www-form-urlencoded",
	   url:"detalle_noticia.php",
	   data:"id_product="+id_produ+"&id_categor="+id_categ,
	   success:llegadaDatosNoticia,
	   timeout:30000
	});
}

function llegadaDatosNoticia(datos){
	$('#contenido').html(datos);
}
function esconder(){
	//$('.mostra_data').css('display','none');
	$('#mdata').fadeOut('fast');
	return false;
}
