/*	
----------------------------------------------------------------------

----------------------------------------------------------------------
*/

$(document).ready(function(){
	$(".content_tabs > div").each(function () {
		$(this).css("display", "none");
	});
	$(".content_tabs > div:first").each(function () {
		$(this).css("display", "block");
	});
	
	
	$(".buttons > li").click(function(e){
		//e.target.id
		$(".buttons > li").each(function () {
			$(this).removeClass("active");
		});
		
		$(".content_tabs > div").each(function () {
			$(this).css("display", "none");
		});
		
		$("#" + e.target.id).addClass("active");
		$("#tab_" + e.target.id).fadeIn();
		
		//alert(e.target.id);
		return false;
	});
});