$(document).ready(function(){
	// Add 'New' and 'Sale' buttons
	$("#widgetCategories .body ul").prepend("<li><a href='http://www.seltzerstudios.com/cart.php?m=new_arrivals'>New!</a></li>");
	$("#widgetCategories .body ul").append("<li><a href='http://www.seltzerstudios.com/cart.php?m=gift_certificates'>Gift Cards</a></li>");
	$("#widgetCategories .body ul").children().each(function(index){	
		$(document.createTextNode(" | ")).insertAfter($(this));
	});
	$("#widgetCategories .body ul").append("<li><a href='http://www.seltzerstudios.com/cart.php?m=on_sale'>Sale!</a></li>");
	
	//Fix height and width of fat categories
	$("#widgetCategories .body ul").children().each(function(index){	
		if($(this).find("a").html() == "Household + Outdoor"){
			$(this).find("a").html("Household +&nbsp;Outdoor");
			$(this).width(70);
		}

		if($(this).find("a").html() == "Office + Travel"){
			$(this).find("a").html("Office +&nbsp;Travel");
			$(this).width(60);
		}
	});
});
