$(document).ready(function() {
	// Control the mouseover of the left column navigation
	$("nav#categories ul li").bind("mouseenter", function() {
		$(this).children("p.viewmore").html('- showing all');
		$(this).children("ul.more").slideDown(200);
	});
	
	// Mouseout of left navigation
	$("nav#categories ul li").bind("mouseleave", function() {
		$(this).children("p.viewmore").html('+ more available');
		$(this).children("ul.more").slideUp(200);
	});
});
