var Tabber = 
{
 tooggleTab:function(tab)
 {
  
   $('.tabContent').each(function(element)
	{
		if ($(this).attr('id') == tab)
		{
			$(this).removeClass('hidden');
		}
		else
		{
			$(this).addClass('hidden');
		}
	});
   
  $('.tab').each(function(element)
	{
		if ($(this).attr('id') == tab + 'Tab')
		{			
			$(this).addClass('selected');			
		}
		else
		{
			$(this).removeClass('selected');
		}
	});
  }

};
