$(document).ready(function(){ 
    
	
	$(".recocbx").colorbox({width:"520px", height:"100%", iframe:true});
	$(".printcbx").colorbox({width:"690px", height:"90%", iframe:true});
    $(".pop").colorbox({width:"640px", height:"90%", iframe:true});
	
	$("img").click(function(){
		var id1 = $(this).attr("alt");
		var id2 = $(this).attr("title");
		
		if (id1=="quitarFavoritos"){
			$.post("http://www.eduteka.org/quitarFav.php", {idF:id2}, function(data){
				if(data=="666"){
					alert("El Archivo no fue eliminado, por favor intente de nuevo");
				}
				if(data=="444"){
					$("#Fav-"+id2).empty();
					$("#Fav-"+id2).html("<br><p align=\"center\"><h3>Eliminado exitosamente</h3></p><br>");
					$("#Fav-"+id2).fadeOut(4000);
				}
	
			});	
		}
	});
	
	$("span").click(function(){
		var tipoId = $(this).attr("id");
		var codMat = $(this).attr("title");
		var TipoDiv = $(this).attr("alt");
		
		if (TipoDiv=="favorito"){
			var idFav = $("#F-"+tipoId).attr("name");
	
			if (idFav=="n"){
				$(this).empty();
				$(this).html("<img src=\"http://www.eduteka.org/modulos/nimg/icoF2.gif\" align=\"absmiddle\" border=\"0\" id=\"F-"+tipoId+"\" title=\""+codMat+"\" name=\"s\">");
				$.post("http://www.eduteka.org/modulos/enviaFavorito.php", {idPry:tipoId,idFv:idFav,catF:codMat}, function(){	
					
			});	
			
			}
			if (idFav=="s"){
				$(this).empty();
				$(this).html("<img src=\"http://www.eduteka.org/modulos/nimg/icoF.gif\" align=\"absmiddle\" border=\"0\" id=\"F-"+tipoId+"\" title=\""+codMat+"\" name=\"n\">");
				$.post("http://www.eduteka.org/modulos/enviaFavorito.php", {idPry:tipoId,idFv:idFav,catF:codMat}, function(){	
				
			});	
			
			}		
		}
	});

});
