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