// JavaScript Document
function showTab(tabId){
	if(tabId=="a"){
		$("#ibm-home-tab-shop").css({background:"url(images/hptab-next.gif)"});
		$("#ibm-home-tab-learn").css({background:"url(images/hptab-select-first.gif)"});
		$("#ibm-home-tab-support").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-my-ibm").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-resources").css({background:"url(images/hptab-nonselect-last.gif)"});
		$("#ibm-tab-content-0").show();
		$("#ibm-tab-content-1").hide();
		$("#ibm-tab-content-2").hide();
		$("#ibm-tab-content-3").hide();
		$("#ibm-tab-content-4").hide();
		$("#a").css({color:"#000000"});
		$("#b").css({color:"#ffffff"});
		$("#c").css({color:"#ffffff"});
		$("#d").css({color:"#ffffff"});
		$("#e").css({color:"#ffffff"});
	}else if(tabId=="b"){		
		$("#ibm-home-tab-shop").css({background:"url(images/hptab-select-two-tabs.gif)"});
		$("#ibm-home-tab-learn").css({background:"url(images/hptab-nonselect-first.gif)"});
		$("#ibm-home-tab-support").css({background:"url(images/hptab-next.gif)"});
		$("#ibm-home-tab-my-ibm").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-resources").css({background:"url(images/hptab-nonselect-last.gif)"});
		$("#ibm-tab-content-0").hide();
		$("#ibm-tab-content-1").show();
		$("#ibm-tab-content-2").hide();
		$("#ibm-tab-content-3").hide();
		$("#ibm-tab-content-4").hide();
		$("#b").css({color:"#000000"});
		$("#a").css({color:"#ffffff"});
		$("#c").css({color:"#ffffff"});
		$("#d").css({color:"#ffffff"});
		$("#e").css({color:"#ffffff"});
	}else if(tabId=="c"){
		$("#ibm-home-tab-shop").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-learn").css({background:"url(images/hptab-nonselect-first.gif)"});
		$("#ibm-home-tab-support").css({background:"url(images/hptab-select-two-tabs.gif)"});
		$("#ibm-home-tab-my-ibm").css({background:"url(images/hptab-next.gif)"});
		$("#ibm-home-tab-resources").css({background:"url(images/hptab-nonselect-last.gif)"});
		$("#ibm-tab-content-0").hide();
		$("#ibm-tab-content-1").hide();
		$("#ibm-tab-content-2").show();
		$("#ibm-tab-content-3").hide();
		$("#ibm-tab-content-4").hide();
		$("#b").css({color:"#ffffff"});
		$("#a").css({color:"#ffffff"});
		$("#c").css({color:"#000000"});
		$("#d").css({color:"#ffffff"});
		$("#e").css({color:"#ffffff"});
	}else if(tabId=="d"){
		$("#ibm-home-tab-shop").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-learn").css({background:"url(images/hptab-nonselect-first.gif)"});
		$("#ibm-home-tab-support").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-my-ibm").css({background:"url(images/hptab-select-two-tabs.gif)"});
		$("#ibm-home-tab-resources").css({background:"url(images/hptab-nonselect-previous-last.gif)"});
		$("#ibm-tab-content-0").hide();
		$("#ibm-tab-content-1").hide();
		$("#ibm-tab-content-2").hide();
		$("#ibm-tab-content-3").show();
		$("#ibm-tab-content-4").hide();
		$("#b").css({color:"#ffffff"});
		$("#a").css({color:"#ffffff"});
		$("#c").css({color:"#ffffff"});
		$("#d").css({color:"#000000"});
		$("#e").css({color:"#ffffff"});
	}else if(tabId=="e"){
		$("#ibm-home-tab-shop").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-learn").css({background:"url(images/hptab-nonselect-first.gif)"});
		$("#ibm-home-tab-support").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-my-ibm").css({background:"url(images/hptab-nonselect.gif)"});
		$("#ibm-home-tab-resources").css({background:"url(images/hptab-select-last.gif)"});
		$("#ibm-tab-content-0").hide();
		$("#ibm-tab-content-1").hide();
		$("#ibm-tab-content-2").hide();
		$("#ibm-tab-content-3").hide();
		$("#ibm-tab-content-4").show();
		$("#b").css({color:"#ffffff"});
		$("#a").css({color:"#ffffff"});
		$("#c").css({color:"#ffffff"});
		$("#d").css({color:"#ffffff"});
		$("#e").css({color:"#000000"});
	}
}