//	All code contained below is copyrighted 2008 by Fintán Stele and licensed under the GPLv2 or above.
//	A copy of the license can be found at: http://www.gnu.org/licenses/gpl.txt
$(function(){
    $(".loading_error").click(function(){$(this).parent(this).parent(this).click();});
    $(".project_button").click(function(){
    	current_project = $(this).attr("id");
    	//current_project=current_project.substr(7,current_project.length);
    	current_project_name=$(this).text();
    	$("#canvas").prepend(
    	"<div class='project_box'><div class='loading'>LOADING "+current_project_name+"</div></div>"
    	);
    	//$("#project_box"+current_project)
    	$("#canvas")
    	.load("projects/"+current_project+"/"+current_project+".html"
    	);
    });
});

