function showHomepageTab(el, bn, eid) {
	jQuery("div.tabs-" + bn).each(function(){
		if (this.id == "tab_" + eid) {
			jQuery(this).removeClass("showTab hideTab").addClass("showTab");
		} else {
			jQuery(this).removeClass("showTab hideTab").addClass("hideTab");
		}
	});
	jQuery("ul.tabs-" + bn + " li").each(function(){
		jQuery(this).removeClass("active");
	});
	jQuery(el.parentNode).addClass("active");
}

