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