$(document).ready(function() {	
	
	// hides the categories
	$('a#cat-close').click(function() {
		$('#jquery-categories-wrapper').slideUp();
		return false;
	});
	
	// toggles the categories
	$('a#categories').click(function() {
		$('#jquery-categories-wrapper').slideToggle();
		//$('#header-categories-wrapper').toggle();
		return false;
	});
	


	// Expand Panel
	$("#open").click(function(){
		$("div#about").slideDown("slow");	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#about").slideUp("slow");	
	});	
	
	$(".rss-popup a").hover(function() {
		$(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");
	});

	
});