﻿/***************************/
//@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(){
	$(".profilemenu > li").click(function(e){
		switch(e.target.id){
			case "userprofile":
				//change status & style menu
				$("#userprofile").addClass("active");
				$("#miscellaneous").removeClass("active");
				$("#contact").removeClass("active");
				//display selected division, hide others
				$("div.userprofile").fadeIn();
				$("div.miscellaneous").css("display", "none");
				$("div.contact").css("display", "none");
			break;
			case "miscellaneous":
				//change status & style menu
				$("#userprofile").removeClass("active");
				$("#miscellaneous").addClass("active");
				$("#contact").removeClass("active");
				//display selected division, hide others
				$("div.miscellaneous").fadeIn();
				$("div.userprofile").css("display", "none");
				$("div.contact").css("display", "none");
			break;
			case "contact":
				//change status & style menu
				$("#userprofile").removeClass("active");
				$("#miscellaneous").removeClass("active");
				$("#contact").addClass("active");
				//display selected division, hide others
				$("div.contact").fadeIn();
				$("div.userprofile").css("display", "none");
				$("div.miscellaneous").css("display", "none");
			break;
		}
		//alert(e.target.id);
		return false;
	});
});
