$(function() {
			
     $("ul.tab li").click(function() {
		$("ul.tab li").removeClass('active');
		   $("div.details").hide();
		   var curRel = $('a',$(this)).attr('rel');
		
		  $(this).addClass('active');
		   $(curRel).show();
		   return false;
	   });

		
});


