window.status='Welcome to M2B World Travel… Your One Stop Travel Source'

function highLight(thisId,thisNum) {
    if (thisNum == 1) {
        ofVal = "#ffffff";
        onVal = "#DBDBCA";
    } else if (thisNum == 2) {
        ofVal = "##F0F3EB";
        onVal = "#DBDBCA";
    } else if (thisNum == 3) {
        ofVal = "#FFFFFF";
        onVal = "#EEEDE1";
    } else if (thisNum == 4) {
        ofVal = "#DFDFD2";
        onVal = "#CACAB4";
    } else if (thisNum == 5) {
        ofVal = "#EAEAE2";
        onVal = "#CACAB4";
    } else if (thisNum == 6) {
        ofVal = "transparent";
        onVal = "#DBDBCA";
    }
    thisId.style.background = onVal;
	thisId.onmouseout = function() {
		thisId.style.background = ofVal;
	}
}
