$(document).ready(function(){
    
});
function showTab(el, id)
{
     $('#navigation a').each(function(){
	 $(this).removeClass('active');
     });
     $(el).addClass('active');
     $('.tab').each(function(){
	$(this).hide();
     })
     var tabId = 'tab_' + id;
     $('#'+tabId).show();
     
}
