// JavaScript Document

$(document).ready(function(){
	
	//Sidebar tabs
	if($(".sb-tabs-controller").length){
		
		$(".sb-tab").hide();
		$(".sb-tab:eq(0)").show();
		
		$(".sb-tabs-controller a").click(function(){
			$(this).parent().addClass("active").siblings().removeClass("active").parent().parent().find(".sb-tab").eq($(this).parent().index()).show().siblings(".sb-tab").hide();
			return false;
		});
		
	};
	
	//Comments
	if($(".form-comment").length){
		
		$(".comments-close, .form-comment").hide();
		
		$(".comments-add").click(function(){
			$(".comments-close, .form-comment").show();
			$(".comments-add").css({"border-color": "#fff"});
			return false;
		});
		
		$(".comments-close").click(function(){
			$(".comments-close, .form-comment").hide();
			$(".comments-add").css({"border-color": "#000"});
			return false;
		});
		
	};
	
	
});
