
	$(document).ready(function(){
		$("#products").toggle(
			function() {
				$("#prod_slide").animate({
					width:"200px"
				},500);
				$("#prod_slide a").fadeIn(500);
			},
			function() {
				$("#prod_slide a").fadeOut(500);
				$("#prod_slide").animate({
					width:"0px",
					display:"none"
				},500);
			}
		);
	})
