	function hoverTab(tabData){
		
	}
	
	function outTab(tabData){
		
	}
	
	function executeTab(tabData){
		tabData.className = "tabactive";
		
		tabData.onmouseover=function(){};
		tabData.onmouseout=function(){};
	}
	
	function showTabData(idForDisplay){
		var tabFeatured = document.getElementById('tab-featured'); 
		var tabHobbyview = document.getElementById('tab-hobbyview');
		var tabProfiview = document.getElementById('tab-profiview');
		var tabContestview = document.getElementById('tab-contestview');
		
		var featuretab = document.getElementById('featuretab');
		var hobbyviewedtab = document.getElementById('hobbyviewedtab');
		var profiviewedtab = document.getElementById('profiviewedtab');
		var contestviewedtab = document.getElementById('contestviewedtab');
		
		tabFeatured.style.display = "none";
		tabHobbyview.style.display = "none";
		tabProfiview.style.display = "none";
		tabContestview.style.display = "none";
		 
		featuretab.className = "";
		hobbyviewedtab.className = "";
		profiviewedtab.className = "";
		contestviewedtab.className = "";
		
		
		
		featuretab.onmouseover=function(){hoverTab(this);}
		hobbyviewedtab.onmouseover=function(){hoverTab(this);}
		profiviewedtab.onmouseover=function(){hoverTab(this);}
		contestviewedtab.onmouseover=function(){hoverTab(this);}
		
		featuretab.onmouseout=function(){outTab(this);}
		hobbyviewedtab.onmouseout=function(){outTab(this);}
		profiviewedtab.onmouseout=function(){outTab(this);}
		contestviewedtab.onmouseout=function(){outTab(this);}
		
		if (idForDisplay == "featured"){	
			tabFeatured.style.display = "block";
			executeTab(featuretab);
		}			
		else if(idForDisplay == "hobbyview"){
			tabHobbyview.style.display = "block";
			executeTab(hobbyviewedtab);			
		}
		else if(idForDisplay == "profiview"){
			tabProfiview.style.display = "block";
			executeTab(profiviewedtab);
		}
		else if(idForDisplay == "contestview"){
			tabContestview.style.display = "block";
			executeTab(contestviewedtab);
		}
		
 	}

