﻿/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

$(document).ready(function () {
    $(".menu > li").click(function (e) {
        $(".menu li").each(function () {

            if (this.id == e.target.id) {
                $("#" + this.id).addClass("active ui-state-active");
                $("div." + this.id).fadeIn();
                $("div." + this.id).css("float", "left");
                $("div." + this.id).css("width", "717px");


            } else {
                $("#" + this.id).removeClass("active ui-state-active");
                $("#" + this.id).addClass("ui-widget-header");
                $("div." + this.id).css("display", "none");

            }
        });
        return false;
    });
});
