$(document).ready(function(){ 
	
	$(".recocbx").colorbox({width:"510px", height:"90%", iframe:true});
	$(".printcbx").colorbox({width:"680px", height:"90%", iframe:true});
	$(".inline").colorbox({width:"600px", inline:true, href:"#indx"});
	$(".accede").colorbox({width:"500px", height:"450px", inline:true, href:"#mainLgFav"});
	$(".me").colorbox({width:"975px", height:"90%", iframe:true});
		
	$("img").click(function () {
		var TipoDiv = $(this).attr("alt");
		var otherInf = $(this).attr("title");
		
		if (TipoDiv=="accedeFav"){
			$("#mainLgFav").slideToggle(200);
		}
		if (TipoDiv=="validaLg"){
			$("#mainLgFav").hide(200);
				$(this).empty();
				$(this).html("<img src=\"http://www.eduteka.org/modulos/nimg/icoF.gif\" align=\"absmiddle\" border=\"0\" id=\"F-"+otherInf+"\" title=\""+codMat+"\" name=\"n\">");
		}
	});
	
	$("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(){	
				
			});	
			
			}		
		}
	});
	
	

});