function fInit(){
	for(var x=0;x<_l.length;x++){
		if(_l[x].className == 'one_third_sidebar'){
			_l[x].onclick = function(){fShowHide('show')};
		}
	}	
}

function fHide(_obj){
	_obj.style.height = '19px';
	_obj.style.paddingBottom = '10px';
	_obj.style.background = '#9F2214';
	
	var _p = _obj.getElementsByTagName(_elem);
	_p[0].onclick = function(){fShowHide('show')};
	_p[0].style.cursor = 'pointer';	
}

function fShow(_obj){
	_obj.style.background = '#9F2214 url(images/dark_box.gif) bottom right no-repeat scroll';
	_obj.style.height = '140px';
	_obj.style.paddingBottom = '3%';
	_obj.onclick = '';

	var _p = _obj.getElementsByTagName(_elem);
	_p[0].onclick = function(){fShowHide('hide')};
	
}

function fShowHide(_which){
	for(var x=0;x<_l.length;x++){if(_l[x].className == 'one_third_sidebar'){(_which=='hide')?fHide(_l[x]):fShow(_l[x]);}}	
}

var _elem = 'h3';
