// Interface User Interaction// Sliding Revealvar divObj, divSize, growRate;function divShow(objct, hght) {		divObj = document.getElementById(objct);		divSize = hght;		growRate = divSize*0.1;			if(divObj.style.display !='block') {					divObj.style.display ='block';			divObj.style.height = '1px';						for (var i=0;i<11;i++)				var t=setTimeout('divFadeIn('+i+')',100*i);				return false;			}				else {				for (var i=0;i<11;i++)				var t=setTimeout('divFadeOut('+i+')',100*i);				return false;					}	}function divFadeIn(value) {	divObj.style.opacity = value*0.1;	divObj.style.filter = 'alpha(opacity=' + value*10 + ')';	divObj.style.height = Math.round(value*growRate)+'px';	}function divFadeOut(value) {	value = 10 - value;		divObj.style.opacity = (value*1.1)-value;	divObj.style.filter = 'alpha(opacity=' + value*10 + ')';	divObj.style.height = Math.round(value*growRate)+'px';			if (parseInt(divObj.style.height)<=0) {				divObj.style.height=divSize+'px';				divObj.style.display='none';			}}//  Simple Revealif (document.getElementById){document.write('<style type="text/css">\n')document.write('.submenu{display: none;}\n')document.write('</style>\n')}function expandSection(obj){	if(document.getElementById){		var el = document.getElementById(obj);		if(el.style.display != "block"){ 			el.style.display = "block";		}else{			el.style.display = "none";		}	}}function floattingBoxToggle(obj1,obj2){	expandSection(obj2);}