$(document).ready(function() {
	/*$("a.tool_link").click(function(){
        $("#tool_container").fadeIn(200);
        var url= $(this).attr("href");
        var titulo= $(this).attr("title");
        //$("#tool_frame").attr("src",this.attr("href"));
        $("#tool_title_text").html(title);});*/
    $("a#calculator_link").click(function(){
    	$("#tool_container").css("width","800px");
    	$("#tool_container").css("height","500px");
    	$("#tool_frame").css("width","780px");
    	$("#tool_frame").css("height","480px");
    	$("#tool_frame").attr("width","780px");
    	$("#tool_frame").attr("height","480px");
    	$("#tool_frame").attr('src',"calculator.html");
        $("#tool_title_text").html("Calculadora");
        $("#tool_container").fadeIn(200);
    });
    $("a#convertor_link").click(function(){
    	$("#tool_container").css("width","400px");
    	$("#tool_container").css("height","300px");
    	$("#tool_frame").css("width","380px");
    	$("#tool_frame").css("height","280px");
    	$("#tool_frame").attr("width","380px");
    	$("#tool_frame").attr("height","280px");
    	$("#tool_frame").attr('src',"convertor.html");
        $("#tool_title_text").html("Convertidor de medidas");
    	$("#tool_container").fadeIn(200);
    });
    /*$("img.filebrowser").click(function(){
    	
    	$("#tool_container").css("width","800px");
    	$("#tool_container").css("height","500px");
    	$("#tool_frame").css("width","780px");
    	$("#tool_frame").css("height","480px");
    	$("#tool_frame").attr("width","780px");
    	$("#tool_frame").attr("height","480px");
    	$("#tool_frame").attr('src','javascripts/tiny_mce/plugins/tinybrowser/tinybrowser.php?feid='+$(this).attr("alt")+'&type=file');
        $("#tool_title_text").html("Navegador de Archivos");
        $("#tool_container").fadeIn(200);
    });*/
    $("a#close_link").click(function(){
    	$("#tool_frame").attr('src','');
        $("#tool_container").fadeOut(100);
    });
});
