//function tabInit(id) {
//     tabId = id;
//     $(tabId + ' a[rel="switchTab"]').bind('click', tabClick);
//}
//
//function tabClick() {
//     $(tabId + ' li').removeClass('sel');
//     $(tabId + ' a').each(function(){
//          var elId = $(this).attr('href');
//          $(elId).hide();
//     });
//     $(this).parent().addClass('sel');
//     var id = $(this).attr('href');
//     $(id).show();
//     return false;
//}

function showHideElelment(showId, hideId) {
     var listId = '' + showId + 'Tab';
     document.getElementById(listId).style.className = 'sel';
     document.getElementById(showId).style.display = 'block';
     document.getElementById(hideId).style.display = 'none';
     return false;
}