$(document).ready(function(){
	$("#mdesc div").hide();
	$("#mdesc div:first").show();

	$(function() {
  	$('#portfolio a').lightBox();
  });
	
	$("#menu a").hover(function() {
		$("#mdesc div").hide();
		$("#m"+this.id).show();
	}, function() {
//			jQuery("#m"+this.id).hide();
	});

	$("#ttt td").addClass("rh");
	
});