/* these are a collection of branding enhancements that are fired via JS. 
This is highly inelegant but necessary because of our inflexible GLOBAL template and CMS.
*/

function leftBar() {
	var col=document.getElementById('leftbar');
	col.style.backgroundImage='url(/resources/design/dropshadow.gif)';
	if (document.getElementById('leftnav'))
	{
		var nav=document.getElementById('leftnav');
		nav.className='leftnav reBrand';
	}

//alert('hooked'); /* for debugging */
}
function bottomBar() {
	var col=document.getElementById('bottombar');
	col.style.backgroundColor='#547';
}	
function snooze(funk,sec) {
//alert('hey'); /* for debugging */
	window.setTimeout(funk,sec*1000);
}
