/*
  ------------------------------------
  PVII Menu CSS Express Drop-Down Menu
  by Project Seven Development
  www.projectseven.com
  ------------------------------------
*/
function P7_ExpMenu(){ //v1.1.0.2 by PVII-www.projectseven.com
 if(navigator.appVersion.indexOf("MSIE")==-1){return;}
 var i,k,g,lg,r=/\s*p7hvr/,nn='',c,cs='p7hvr',bv='p7menubar';
 for(i=0;i<10;i++){g=document.getElementById(bv+nn);if(g){
 lg=g.getElementsByTagName("LI");if(lg){for(k=0;k<lg.length;k++){
 lg[k].onmouseover=function(){c=this.className;cl=(c)?c+' '+cs:cs;
 this.className=cl;};lg[k].onmouseout=function(){c=this.className;
 this.className=(c)?c.replace(r,''):'';};}}}nn=i+1;}
}
function left_col_height (other_page) {
	if (other_page != 'index') {
		var leftCol_height = document.getElementById('leftCol_other_content').offsetHeight;
		var back_div_height = 877;
		//alert (leftCol_height);
		if (leftCol_height < back_div_height) {
			if (navigator.appName == "Microsoft Internet Explorer" && (navigator.userAgent.indexOf("MSIE 6.0") > -1 || navigator.userAgent.indexOf("MSIE 7.0") > -1)) {
				//back_div_height += 3;
				document.getElementById('leftCol_other_content').style.height = back_div_height + 'px';
			} else {
				document.getElementById('leftCol_other_content').style.height = back_div_height + 'px';
			}
			document.getElementById('leftCol_other_lists').style.position = 'relative';
			document.getElementById('bottom_banner').style.position = 'absolute';
		} else {
			/*
			document.getElementById('bottom_banner').style.position = 'relative';
			document.getElementById('bottom_banner').style.bottom = '5px';
			document.getElementById('bottom_banner').style.float = 'left';
			*/
		}
	}
}

window.onload = function () {
	P7_ExpMenu();
}

function showBySection() {
    document.getElementById("latestNews_list").style.display = 'block';
    document.getElementById("newsByDate").style.display = 'none';
    document.getElementById("bySectionTab").className = 'by_section';
    document.getElementById("byDateTab").className = 'by_date';
}

function showByDate() {
    document.getElementById("latestNews_list").style.display = 'none';
    document.getElementById("newsByDate").style.display = 'block';
    document.getElementById("bySectionTab").className = 'by_date';
    document.getElementById("byDateTab").className = 'by_section';
}

function bookmarksite(title, url) {
    if (window.sidebar) // firefox
        window.sidebar.addPanel(title, url, "");
    else if (window.opera && window.print) { // opera
        var elem = document.createElement('a');
        elem.setAttribute('href', url);
        elem.setAttribute('title', title);
        elem.setAttribute('rel', 'sidebar');
        elem.click();
    }
    else if (document.all)// ie
        window.external.AddFavorite(url, title);
}

var i = 0;
var tt;
function scrollHor() {
    var ob = document.getElementById("hor");
    ob.style.left = i + "px";
    i = i - 1;
    if (parseInt(document.getElementById("hor").offsetWidth) + i < 0) {
        i = 135;
    }
    tt=setTimeout("scrollHor()", 20);
}


function featProv() {
    scrollHor();
    document.getElementById("hord").onmouseout = function() {
        tt = setTimeout("scrollHor()", 20);
    }

    document.getElementById("hord").onmouseover = function() {
        if (tt) {
            clearTimeout(tt);
        }
    }
}

function right_banner_height() {
    var rightCol_1_height = document.getElementById('rightCol_1').offsetHeight;
    document.getElementById('right_banner_content').style.height = rightCol_1_height - 30 + 'px';
}