$(document).ready(function(){
	
	// hide the category menu
	$("#more-cat-menu").hide();
	
	//reveal the category menu
	$("#cat-menu li.more a").click(function(){
		if ($("#more-cat-menu").is(":hidden")){
			$("#more-cat-menu").slideDown("slow");
			setTimeout( "$('#cat-menu li.more a').addClass('close');", 500 );
		} else {
			$("#more-cat-menu").slideUp("slow");
			setTimeout( "$('#cat-menu li.more a').removeClass('close');", 500 );
		}
	});

	// clear out email subscribe
	$(":text").focus(function(){
		if($(this).val() == "e-mail address"){
			var oldVal = $(this).val();
			$(this).blur(function(){
				if($(this).val() == "") { $(this).val(oldVal); }
			});
			$(this).val("");
		}
	});
	
	// sidebar tabs control
    $("ul#tabs").tabs();
	
});
