var t = 0;
function hoverOut(child,psubOver)
{
if(psubOver) {
    if(t) clearTimeout(t);
    return;
}
t = setTimeout("document.getElementById('" + child + "').style.left='-999em'", 1300);
}

function hoverOver(child)
{
if(document.getElementById('psub').style.left)
   document.getElementById('psub').style.left = '-999em';
if(document.getElementById('ssub').style.left)
   document.getElementById('ssub').style.left = '-999em';
if(t) clearTimeout(t);
document.getElementById(child).style.left='auto'
}

if (window.attachEvent) window.attachEvent("onload", sfHover);

	function toggle_block(objStr) {
		if( $(objStr).style.display == 'none') {
				Effect.SlideDown(objStr, { duration: 0.4 });
		}
		else {
				Effect.SlideUp(objStr , { duration: 0.4 });		
		}	
	}