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