﻿var flag=0;
function ShowHide() {
	if(flag== 0) {
		document.getElementById("compare").style.display = "block";
		document.getElementById("morefeatures").innerHTML = "<a href='javascript:void(0);' onclick='ShowHide();'>Hide Features</a>";
		flag=1;
	} else {
		document.getElementById("compare").style.display = "none";
		document.getElementById("morefeatures").innerHTML = "<a href='javascript:void(0);' onclick='ShowHide();'>Show more features</a>";
		flag=0;
	}
	return false;
}

function btnover(btn,divid){
    onlink = divid+"_over";
    if (document.getElementById(btn).className != onlink){
        document.getElementById(btn).className = onlink; 
    }
}
function btnout(btn,divid){
    onlink = divid+"_over";
    offlink = divid;
    
    if (document.getElementById(btn).className == onlink){
    
        document.getElementById(btn).className = offlink;
    }
}



