﻿

/*	POETICSOFT.COM | epoca 2009 */

/*	------------------------------------------------------------------------------------------------
																									INIT */

	$(document).ready( function()
	{	
		$("HR").remove();
		
		$("A").eq(0)
		.addClass("contacto")
		.add($("H1").eq(0))
		.wrapAll("<div id='head'></div>");
		
		var tipos = {};
		tipos["working"] =	{ text:"activos", estado:true };
		tipos["waiting"] =	{ text:"en espera", estado:true };	
		tipos["ideas"] =	{ text:"ideas", estado:true };
		tipos["web"] =		{ text:"on-line", estado:true };	
		
		var menuHTML = "<div id='menu'><p><strong>proyectos</strong> &copy; Alberto Moral ></p><ul>"
		for(var t in tipos)
		{
			menuHTML += "<li class='" + t + "'>" +
						"<input type='checkbox' name='" + t + "'/>" +
						"<div></div>" +
						tipos[t].text +
						"</li>";
		}
		menuHTML += "</ul></div>";
		$("#head").after(menuHTML);		
		
		$("H2").each(function()
		{
			$(this)
			.add($(this).siblings("A").eq(0))
			.wrapAll("<div class='proyecto " + $(this).attr("class") + "'></div>");
		}).removeAttr("class").before("<div> </div>");
		
		$("DIV.proyecto").wrapAll("<div class='proyectos'></div>");
		
		$("#menu INPUT").attr("checked", true).click(function()
		{
		 	var tipo = $(this).attr("name");
			if($(this).attr("checked")) { $("DIV.proyectos DIV." + tipo).fadeIn("slow"); } 
			else { $("DIV.proyectos DIV." + tipo).fadeOut("slow"); };
		});
		
	}); 

