// JavaScript Document

var strCurrObj = '';

function showDivWeatherDay(strObjDiv,strObjBigDiv){
    strCurrObj = strObjDiv;
    document.getElementById(strObjDiv).style.display = "block";
    document.getElementById(strObjBigDiv).style.display = "none"
}

function getSelectItem(selectItem,WeatherContain){
    if(selectItem != "0") {
        showDivWeatherDay(selectItem,WeatherContain);
	}
	document.getElementById("MajorCitiesDDList").value = "0";
}

function returnMainWeather(strObjDiv){
   // document.getElementById(strObjDiv).style.display="block";
    var obj = document.getElementById(strObjDiv);
    obj.style.display = "block";
    document.getElementById(strCurrObj).style.display="none";
}

function overWeather(objRef){
    objRef.style.cursor ="pointer";
}





