function oNload(page){
	resizeBars(0);
	window.onresize = function() {
        resizeBars(1);
    }
    m = document.getElementById('menu').getElementsByTagName('li');
    for(var i = 0; i< m.length; i++)
    {
    	m.item(i).onmouseover = function() {
    		this.style.backgroundImage = "url('/images/menu_aright.gif')";
    		this.style.backgroundRepeat = "no-repeat";
    		this.style.backgroundPosition = "96% 50%";
    	}
    	
   	    m.item(i).onmouseout = function() {
    		this.style.backgroundImage = "none";
    		if(this.className == 'selected') this.className = '';
    	}
    }
    
	pic1 = new Image();
	pic1.src = '/images/menu2_aright.gif';
	pic2 = new Image();
	pic2.src = '/images/menu_aright.gif';
	pic3 = new Image();
	pic3.src = '/images/menu_wleft.gif';
	pic4 = new Image();
	pic4.src = '/images/menu2_bleft.gif';
	
    if(page == 'gallery')
    {
    	m = document.getElementById('menu2').getElementsByTagName('li');
	    for(var i = 0; i< m.length; i++)
	    {
	    	m.item(i).onmouseover = function() {
	    		this.style.backgroundImage = "url('/images/menu2_aright.gif')";
	    		this.style.backgroundRepeat = "no-repeat";
	    		this.style.backgroundPosition = "96% 50%";
	    	}
	    	
	   	    m.item(i).onmouseout = function() {
	    		this.style.backgroundImage = "none";
	    		if(this.className == 'selected') this.className = '';
	    	}
	    }
    }
}

function resizeBars(res){
	WinHeight = document.body.offsetHeight?document.body.offsetHeight:window.innerHeight;
	WinHeight = WinHeight - 580;
	
	h = Math.round(WinHeight / 2);
	h = (h < 0) ? 0 : h;
	document.getElementById('top').style.height = h+'px';
	if(res)
	document.getElementById('bottom').style.height = h+'px';
}