$('.tab-nav a').live ('click', function () 
{	
	$(this).parent ().addClass ('current').siblings ().removeClass ('current');	
	var id = $(this).attr ('href');	
	$(id).show ().siblings ('.tab-content').hide ();	
	return false;
});
