
function activeTab(li, a, span){
	    document.getElementById(li).style.background="url(http://cdn.adoption.games2win.com/imagesv3/tab_active_bg.jpg) repeat-x 100% 58% ";	
		document.getElementById(a).style.background="url(http://cdn.adoption.games2win.com/imagesv3/tab_active_lcrn.jpg) no-repeat left bottom ";
		document.getElementById(span).style.background="url(http://cdn.adoption.games2win.com/imagesv3/tab_active_rcrn.jpg) no-repeat right bottom ";
		}
		
function normalTab(li, a, span){
	   document.getElementById(li).style.background="url(http://cdn.adoption.games2win.com/imagesv3/topNav_bg.jpg) repeat-x 100% 58% ";	
		document.getElementById(a).style.background="url(http://cdn.adoption.games2win.com/imagesv3/topNav_leftCrn.jpg) no-repeat left bottom ";
		document.getElementById(span).style.background="url(http://cdn.adoption.games2win.com/imagesv3/topNav_rightCrn.jpg) no-repeat right bottom ";
		}
		
		
		function activeTabH(li, a, span){
	    document.getElementById(li).style.background="url(http://cdn.adoption.games2win.com/imagesv3/tab_active_bg.jpg) repeat-x 100% 58% ";	
		document.getElementById(a).style.background="url(http://cdn.adoption.games2win.com/imagesv3/home_ico_active.jpg) no-repeat left bottom ";
		document.getElementById(span).style.background="url(http://cdn.adoption.games2win.com/imagesv3/tab_active_rcrn.jpg) no-repeat right bottom ";
		}
		
function normalTabH(li, a, span){
	   document.getElementById(li).style.background="url(http://cdn.adoption.games2win.com/imagesv3/topNav_bg.jpg) repeat-x 100% 58% ";	
		document.getElementById(a).style.background="url(http://cdn.adoption.games2win.com/imagesv3/home_ico.jpg) no-repeat left bottom ";
		document.getElementById(span).style.background="url(http://cdn.adoption.games2win.com/imagesv3/topNav_rightCrn.jpg) no-repeat right bottom ";
		}



function openPage(pageLink){	
	window.open(pageLink,"_parent");
	}
	
	
function showOptions(){
	document.getElementById("optionBtn").src='images/changeColor_Btn2.jpg';
	document.getElementById("options").style.display=''; 
	}	

function hideOptions(){
	document.getElementById("optionBtn").src='images/changeColor_Btn.jpg';
	document.getElementById("options").style.display='none';
	}
	
function toggleOptions(){
	var obj=document.getElementById("options");
	if(obj.style.display!='')
	{
		showOptions();
		}else{
			hideOptions();
			}
    
	}
	

	
function tooltipShow(tooltip){
	
	document.getElementById(tooltip).style.display='block';	
	
	}
	
	
function tooltipHide(tooltip){	
	document.getElementById(tooltip).style.display='none';	
	
	}
