$("#subcat0").fadeIn();
$("#sub0").addClass('color')
hideAll = function(){	
			$("div#showcase > div").each(
				function (){
				$(this).hide();
				}
			);
		};
removeColor = function(){	
			$("ul#menu  > li > a").each(
				function (){
				$(this).removeClass("color");
				}
			);
		};
$("ul#menu  > li > a").each(
	function(index){
		this.idx = index;
		$(this).click(
			function(){
				hideAll();
				removeColor();
				$(this).addClass("color");
				$("#subcat"+this.idx).fadeIn();
			}
		)
	}
)
