function a(obj)
{
obj.style.backgroundColor='#004467';
}


function b(obj)
{
obj.style.backgroundColor='#b32318';
}

/*
 * pops up centered window
 *
 * link example:	<a href="page.html" onClick="pop_win('page.html','','450', '250','resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no');return false;">
 * settings example: 'resizable=yes,scrollbars=yes,toolbar=yes,status=yes,menubar,location,directories'
 */
var win = null;
function pop_windo( mypage, myname, w, h, features )
{
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	
	if (winl < 0)
		winl = 0;
	
	if (wint < 0)
		wint = 0;
	
	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	settings += features;

	win = window.open( mypage, myname, settings );
	win.window.focus();
}

function win_up2(winurl, winname,w,h) {
	if (winname == null) winname = "calcs_win";
	if (w == null) w = 500;
	if (h == null) h = 500;
	window.open(winurl, winname,"status,scrollbars,resizable,width=" + w + ",height=" + h);
}


// as suggested in: http://www.adobe.com/devnet/activecontent/articles/devletter.html
// example:	<script type="text/javascript">print_flash("160","399","/upload/aspectai/flash/home_animation.swf","");</script>
function print_flash(width,height,fileName,noembed)
{
   document.write('<object style="position:relative;z-index:5;" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" height="'+height+'" width="'+width+'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">\n');
   document.write('<param value="'+fileName+'" name="Movie" />\n');
   document.write('<param value="'+fileName+'" name="Src" />\n');
   document.write('<param value="transparent" name="WMode" />\n');
   document.write('<param value="-1" name="Play" />\n');
   document.write('<param value="-1" name="Loop" />\n');
   document.write('<param value="High" name="Quality" />\n');
   document.write('<param value="-1" name="Menu" />\n');
   document.write('<param value="always" name="AllowScriptAccess" />\n');
   document.write('<param value="ShowAll" name="Scale" />\n');
   document.write('<param value="0" name="DeviceFont" />\n');
   document.write('<param value="0" name="EmbedMovie" />\n');
   document.write('<param value="#ffffff" name="BGColor" />\n');
   document.write('<param value="1" name="SeamlessTabbing" />\n');
   document.write('<param value="0" name="Profile" />\n');
   document.write('<param value="0" name="ProfilePort" /><embed src="'+fileName+'" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"><noembed>'+noembed+'</noembed></embed></object>\n');
}

//
// write the "Talk to me" button code
// <script type="text/javascript">writeButton('/files/400519/talk2me_green.jpg',491,102,0,0,0);</script> -- homepage banner
// <script type="text/javascript">writeButton('/files/400519/talk2me_square_blue.jpg',201,219,0,0,0);</script> -- blue square not aligned
// <script type="text/javascript">writeButton('/files/400519/talk2me_square_blue.jpg',201,219,15,5,1);</script> -- blue square aligned to the right
//
function writeButton(imgSrc,width,height,hspace,vspace,boolAlignRight)
{
	if (boolAlignRight)
	{
	document.write("<a onClick=\"pop_windo('http://www.realping.com/accts/connect2.cfm?id=15444&tz=0&src=web','','600', '500','resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no');return false;\" href=\"http://www.realping.com/accts/connect2.cfm?id=15444&tz=0&src=web\">");
	document.write('<img align="right" hspace="'+hspace+'" vspace="'+vspace+'" height="'+height+'" alt="Contact Anat about this Bergen County property!" width="'+width+'" border="0" src="'+imgSrc+'" />');
	document.write('</a>');
	}
	else
	{
	document.write("<a onClick=\"pop_windo('http://www.realping.com/accts/connect2.cfm?id=15444&tz=0&src=web','','600', '500','resizable=yes,scrollbars=yes,status=yes,toolbar=no,menubar=no');return false;\" href=\"http://www.realping.com/accts/connect2.cfm?id=15444&tz=0&src=web\">");
	document.write('<img hspace="'+hspace+'" vspace="'+vspace+'" height="'+height+'" alt="Contact Anat about this Bergen County property!" width="'+width+'" border="0" src="'+imgSrc+'" />');
	document.write('</a>');
	}
}


/*
 * Content Slider JS BEGIN
 * http://www.dynamicdrive.com/dynamicindex17/featuredcontentslider.htm
 */
var featuredcontentslider={

//3 variables below you can customize if desired:
ajaxloadingmsg: '<div style="margin: 20px 0 0 20px"><img src="loading.gif" /> Fetching slider Contents. Please wait...</div>',
bustajaxcache: true, //bust caching of external ajax page after 1st request?
enablepersist: true, //persist to last content viewed when returning to page?

settingcaches: {}, //object to cache "setting" object of each script instance

jumpTo:function(fcsid, pagenumber){ //public function to go to a slide manually.
	this.turnpage(this.settingcaches[fcsid], pagenumber)
},

ajaxconnect:function(setting){
	var page_request = false
	if (window.ActiveXObject){ //Test for support for ActiveXObject in IE first (as XMLHttpRequest in IE7 is broken)
		try {
		page_request = new ActiveXObject("Msxml2.XMLHTTP")
		} 
		catch (e){
			try{
			page_request = new ActiveXObject("Microsoft.XMLHTTP")
			}
			catch (e){}
		}
	}
	else if (window.XMLHttpRequest) // if Mozilla, Safari etc
		page_request = new XMLHttpRequest()
	else
		return false
	var pageurl=setting.contentsource[1]
	page_request.onreadystatechange=function(){
		featuredcontentslider.ajaxpopulate(page_request, setting)
	}
	document.getElementById(setting.id).innerHTML=this.ajaxloadingmsg
	var bustcache=(!this.bustajaxcache)? "" : (pageurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
	page_request.open('GET', pageurl+bustcache, true)
	page_request.send(null)
},

ajaxpopulate:function(page_request, setting){
	if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1)){
		document.getElementById(setting.id).innerHTML=page_request.responseText
		this.buildpaginate(setting)
	}
},

buildcontentdivs:function(setting){
	var alldivs=document.getElementById(setting.id).getElementsByTagName("div")
	for (var i=0; i<alldivs.length; i++){
		if (this.css(alldivs[i], "contentdiv", "check")){ //check for DIVs with class "contentdiv"
			setting.contentdivs.push(alldivs[i])
				alldivs[i].style.display="none" //collapse all content DIVs to begin with
		}
	}
},

buildpaginate:function(setting){
	this.buildcontentdivs(setting)
	var sliderdiv=document.getElementById(setting.id)
	var pdiv=document.getElementById("paginate-"+setting.id)
	var phtml=""
	var toc=setting.toc
	var nextprev=setting.nextprev
	if (typeof toc=="string" && toc!="markup" || typeof toc=="object"){
		for (var i=1; i<=setting.contentdivs.length; i++){
			phtml+='<a href="#'+i+'" class="toc">'+(typeof toc=="string"? toc.replace(/#increment/, i) : toc[i-1])+'</a> '
		}
		phtml=(nextprev[0]!=''? '<a href="#prev" class="prev">'+nextprev[0]+'</a> ' : '') + phtml + (nextprev[1]!=''? '<a href="#next" class="next">'+nextprev[1]+'</a>' : '')
		pdiv.innerHTML=phtml
	}
	var pdivlinks=pdiv.getElementsByTagName("a")
	var toclinkscount=0 //var to keep track of actual # of toc links
	for (var i=0; i<pdivlinks.length; i++){
		if (this.css(pdivlinks[i], "toc", "check")){
			if (toclinkscount>setting.contentdivs.length-1){ //if this toc link is out of range (user defined more toc links then there are contents)
				pdivlinks[i].style.display="none" //hide this toc link
				continue
			}
			pdivlinks[i].setAttribute("rel", ++toclinkscount) //store page number inside toc link
			pdivlinks[i][setting.revealtype]=function(){
				featuredcontentslider.turnpage(setting, this.getAttribute("rel"))
				return false
			}
			setting.toclinks.push(pdivlinks[i])
		}
		else if (this.css(pdivlinks[i], "prev", "check") || this.css(pdivlinks[i], "next", "check")){ //check for links with class "prev" or "next"
			pdivlinks[i].onclick=function(){
				featuredcontentslider.turnpage(setting, this.className)
				return false
			}
		}
	}
	this.turnpage(setting, setting.currentpage, true)
	if (setting.autorotate[0]){ //if auto rotate enabled
		pdiv[setting.revealtype]=function(){
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		sliderdiv["onclick"]=function(){ //stop content slider when slides themselves are clicked on
			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
		}
		setting.autorotate[1]=setting.autorotate[1]+(1/setting.enablefade[1]*50) //add time to run fade animation (roughly) to delay between rotation
	 this.autorotate(setting)
	}
},

urlparamselect:function(fcsid){
	var result=window.location.search.match(new RegExp(fcsid+"=(\\d+)", "i")) //check for "?featuredcontentsliderid=2" in URL
	return (result==null)? null : parseInt(RegExp.$1) //returns null or index, where index (int) is the selected tab's index
},

turnpage:function(setting, thepage, autocall){
	var currentpage=setting.currentpage //current page # before change
	var totalpages=setting.contentdivs.length
	var turntopage=(/prev/i.test(thepage))? currentpage-1 : (/next/i.test(thepage))? currentpage+1 : parseInt(thepage)
	turntopage=(turntopage<1)? totalpages : (turntopage>totalpages)? 1 : turntopage //test for out of bound and adjust
	if (turntopage==setting.currentpage && typeof autocall=="undefined") //if a pagination link is clicked on repeatedly
		return
	setting.currentpage=turntopage
	setting.contentdivs[turntopage-1].style.zIndex=++setting.topzindex
	this.cleartimer(setting, window["fcsfade"+setting.id])
	setting.cacheprevpage=setting.prevpage
	if (setting.enablefade[0]==true){
		setting.curopacity=0
		this.fadeup(setting)
	}
	if (setting.enablefade[0]==false){ //if fade is disabled, fire onChange event immediately (verus after fade is complete)
		setting.contentdivs[setting.prevpage-1].style.display="none" //collapse last content div shown (it was set to "block")
		setting.onChange(setting.prevpage, setting.currentpage)
	}
	setting.contentdivs[turntopage-1].style.visibility="visible"
	setting.contentdivs[turntopage-1].style.display="block"
	if (setting.prevpage<=setting.toclinks.length) //make sure pagination link exists (may not if manually defined via "markup", and user omitted)
		this.css(setting.toclinks[setting.prevpage-1], "selected", "remove")
	if (turntopage<=setting.toclinks.length) //make sure pagination link exists (may not if manually defined via "markup", and user omitted)
		this.css(setting.toclinks[turntopage-1], "selected", "add")
	setting.prevpage=turntopage
	if (this.enablepersist)
		this.setCookie("fcspersist"+setting.id, turntopage)
},

setopacity:function(setting, value){ //Sets the opacity of targetobject based on the passed in value setting (0 to 1 and in between)
	var targetobject=setting.contentdivs[setting.currentpage-1]
	if (targetobject.filters && targetobject.filters[0]){ //IE syntax
		if (typeof targetobject.filters[0].opacity=="number") //IE6
			targetobject.filters[0].opacity=value*100
		else //IE 5.5
			targetobject.style.filter="alpha(opacity="+value*100+")"
	}
	else if (typeof targetobject.style.MozOpacity!="undefined") //Old Mozilla syntax
		targetobject.style.MozOpacity=value
	else if (typeof targetobject.style.opacity!="undefined") //Standard opacity syntax
		targetobject.style.opacity=value
	setting.curopacity=value
},

fadeup:function(setting){
	if (setting.curopacity<1){
		this.setopacity(setting, setting.curopacity+setting.enablefade[1])
		window["fcsfade"+setting.id]=setTimeout(function(){featuredcontentslider.fadeup(setting)}, 50)
	}
	else{ //when fade is complete
		if (setting.cacheprevpage!=setting.currentpage) //if previous content isn't the same as the current shown div (happens the first time the page loads/ script is run)
			setting.contentdivs[setting.cacheprevpage-1].style.display="none" //collapse last content div shown (it was set to "block")
		setting.onChange(setting.cacheprevpage, setting.currentpage)
	}
},

cleartimer:function(setting, timervar){
	if (typeof timervar!="undefined"){
		clearTimeout(timervar)
		clearInterval(timervar)
		if (setting.cacheprevpage!=setting.currentpage){ //if previous content isn't the same as the current shown div
			setting.contentdivs[setting.cacheprevpage-1].style.display="none"
		}
	}
},

css:function(el, targetclass, action){
	var needle=new RegExp("(^|\\s+)"+targetclass+"($|\\s+)", "ig")
	if (action=="check")
		return needle.test(el.className)
	else if (action=="remove")
		el.className=el.className.replace(needle, "")
	else if (action=="add")
		el.className+=" "+targetclass
},

autorotate:function(setting){
 window["fcsautorun"+setting.id]=setInterval(function(){featuredcontentslider.turnpage(setting, "next")}, setting.autorotate[1])
},

getCookie:function(Name){ 
	var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
	if (document.cookie.match(re)) //if cookie found
		return document.cookie.match(re)[0].split("=")[1] //return its value
	return null
},

setCookie:function(name, value){
	document.cookie = name+"="+value

},


init:function(setting){
	var persistedpage=this.getCookie("fcspersist"+setting.id) || 1
	var urlselectedpage=this.urlparamselect(setting.id) //returns null or index from: mypage.htm?featuredcontentsliderid=index
	this.settingcaches[setting.id]=setting //cache "setting" object
	setting.contentdivs=[]
	setting.toclinks=[]
	setting.topzindex=0
	setting.currentpage=urlselectedpage || ((this.enablepersist)? persistedpage : 1)
	setting.prevpage=setting.currentpage
	setting.revealtype="on"+(setting.revealtype || "click")
	setting.curopacity=0
	setting.onChange=setting.onChange || function(){}
	if (setting.contentsource[0]=="inline")
		this.buildpaginate(setting)
	if (setting.contentsource[0]=="ajax")
		this.ajaxconnect(setting)
}

}

/*
 * Content Slider JS END
 */




/*
 * udm-custom.js BEGIN
 */

// UDMv4.52 //
var um={'menuClasses':[],'itemClasses':[],'menuCode':[]};

//path to images folder
um.baseSRC = "/files/400519/";


//initialization trigger element ["id"];
um.trigger = "";


//navbar orientation
um.orientation = [
	"horizontal",	// alignment ["vertical"|"horizontal"|"popup"|"expanding"]
	"left",		// h align ["left"|"right"]
	"top",		// v align ["top"|"bottom"]
	"relative",	// positioning ["relative"|"absolute"|"fixed"|"allfixed"]
	"14px",	// x position ["em"|"ex"|"px"|"0"]
	"0",	// y position ["em"|"ex"|"px"|"0"]
	"1000",		// z order ["0" to "10000"] (menu takes 20000 headroom)
	];


//navbar list output
um.list = [
	"flexible",	// horizontal overflow ["rigid"|"flexible"]
	"yes",		// -SPARE-
	"no", 		// -SPARE-
	];


//menu behaviors
um.behaviors = [
	"100",		// open timer ["milliseconds"|"0"]
	"400",		// close timer ["milliseconds"|"never"|"0"]
	"yes",		// reposition menus to stay inside the viewport ["yes"|"no"]
	"default",	// manage windowed controls for win/ie ["default","hide","iframe","none"]
	];


//reset behaviors
um.reset = [
	"yes",		// reset from document mouse click ["yes"|"no"]
	"yes",		// reset from window resize ["yes"|"no"]
	"yes",		// reset from text resize ["yes"|"no"]
	"no",		// reset after following link ["yes"|"no"]
	];


//horizontal continuation strip
um.hstrip = [
	"none",		// background ["color"|"#hex"|"rgb()"|"image.gif"|"none"]
	"no",		// copy navbar item margin-right to margin-bottom ["yes"|"no"]
	];


//keyboard navigation [comment out or remove if not using]
um.keys = [
	"38",		// up ["n"] ("38" = up arrow key)
	"39",		// right ["n"] ("39" = right arrow key)
	"40",		// down ["n"] ("40" = down arrow key)
	"37",		// left ["n"] ("37" = left arrow key)
	"123",		// hotkey ["n"] ("38" = F12]
	"none",		// hotkey modifier ["none"|"shiftKey"|"ctrlKey"|"altKey"|"metaKey"]
	"27",		// escape ["n"|"none"] ("27" = escape key)
	"document.getElementsByTagName('a')[0]", // exit focus ["js-expression"]
	];


//styles which apply to the navbar
um.navbar = [
	"0",		// nav -> menu x-offset (+-)["n" pixels]
	"0",		// nav -> menu y-offset (+-)["n" pixels]
	"7.5em",	// width ["em"|"ex"|"px"] (vertical navbar only - horizontal navbar items have "auto" width) ("%" doesn't work right)
	];


//styles which apply to each navbar item
um.items = [
	"0",		// margin between items ["n" pixels]
	"0",		// border size ["n" pixels] (single value only)
	"collapse",	// border collapse ["collapse"|"separate"] (only applies when margin = "0")
	"",// border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	
	"",// hover/focus border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	
	"",// visited border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"",
	"9",		// left/right padding ["n" pixels] (single value only)
	"6",		// top/bottom padding ["n" pixels] (single value only)
	"",		// background ["color"|"#hex"|"rgb()"|"image.gif"]
	"button_bg.png",		// hover/focus background ["color"|"#hex"|"rgb()"|"image.gif"]
	"",		// visited background ["color"|"#hex"|"rgb()"|"image.gif"]
	"12px",		// font size ["em"|"ex"|"%"|"px"|"pt"|"absolute-size"|"relative-size"]
	"Trebuchet MS, Tahoma, sans-serif",// font family ["font1,font2,font3"] (always end with a generic family name)
	"bold",		// font weight ["normal"|"bold"|"bolder"|"lighter|"100" to "900"]
	"none",		// text decoration ["none"|"underline"|"overline"|"line-through"]
	"center",		// text-align ["left"|"right"|"center"]
	"#fff",	// color ["color"|"#hex"|"rgb()"]
	"#fff",	// hover/focus color ["color"|"#hex"|"rgb()"]
	"#fff",	// visited color ["color"|"#hex"|"rgb()"]
	"normal",	// font-style ["normal"|"italic"|"oblique"]
	"normal",	// hover/focus font-style ["normal"|"italic"|"oblique"]
	"normal",	// visited font-style ["normal"|"italic"|"oblique"]
	"letter-spacing:0px !important;line-height:18px;",// additional link CSS (careful!)
	"letter-spacing:0px !important;line-height:18px;",		// additional hover/focus CSS (careful!)
	"letter-spacing:0px !important;line-height:18px;",		// additional visited CSS (careful!)
	"none",// menu indicator character/image ["text"|"image.gif"|"none"]
	"none",// menu indicator rollover character/image ["text"|"image.gif"|"none"] (must be same type)
	"7",		// clipping width of indicator image ["n" pixels] (only when using image arrows)
	"..",		// alt text of indicator image ["text"] (only when using image arrows)
	];


//styles which apply to each menu
um.menus = [
	"0",		// menu -> menu x-offset (+-)["n" pixels]
	"0",		// menu -> menu y-offset (+-)["n" pixels]
	"0",		// border size ["n" pixels] (single value only)
	"",// border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	// border styles ["solid"|"double"|"dotted"|"dashed"|"groove"|"ridge"|"inset"|"outset"] (single, double or four values; be careful with using "none")
	"228px",	// width ["em"|"ex"|"px"]
	"0",		// padding ["n" pixels] (single value only)
	"",	// background ["color"|"#hex"|"rgb()"|"image.gif"]
	"",		// additional menu CSS (careful!) (you can use a transition here but *not* a static filter)
	"greyshadow.png",// shadow background ["color"|"#hex"|"rgb()"|"image.gif"|"none"]
	"3px",		// shadow offset (+-) ["em"|"px"|"pt"|"%"|"0"]
	"filter:alpha(opacity=50);",// additional shadow layer CSS (if you use a Microsoft.Shadow filter here then Win/IE5.5+ will do that *instead* of default shadow)
	];


//styles which apply to each menu item
um.menuItems = [
	"0",		// margin around items ["n" pixels] (single value only; margins are like table cellspacing)
	"0",		// border size ["n" pixels] (single value only)
	"separate",	// border collapse ["collapse"|"separate"] (only applies when margin = "0")
	"",	// border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	
	"",		// hover/focus border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	
	"",	// visited border colors ["color"|"#hex"|"rgb()"] (single, double or four values)
	"solid",	
	"17",		// left/right padding ["n" pixels] (single value only)
	"2",		// top/bottom padding ["n" pixels] (single value only)
	"#282828",	// background ["color"|"#hex"|"rgb()"|"image.gif"]
	"#282828",	// hover/focus background ["color"|"#hex"|"rgb()"|"image.gif"]
	"#282828",	// visited background ["color"|"#hex"|"rgb()"|"image.gif"]
	"12px",		// font size ["em"|"ex"|"%"|"px"|"pt"|"absolute-size"|"relative-size"]
	"Trebuchet MS, Tahoma, sans-serif",// font family ["font1,font2,font3"] (always end with a generic family name)
	"normal",	// font weight ["normal"|"bold"|"bolder"|"lighter|"100" to "900"]
	"none",		// text decoration ["none"|"underline"|"overline"|"line-through"]
	"left",		// text-align ["left"|"right"|"center"]
	"#fff",		// color ["color"|"#hex"|"rgb()"]
	"#f78900",		// hover/focus color ["color"|"#hex"|"rgb()"]
	"#fff",		// visited color ["color"|"#hex"|"rgb()"]
	"normal",	// font-style ["normal"|"italic"|"oblique"]
	"normal",	// hover/focus font-style ["normal"|"italic"|"oblique"]
	"normal",	// visited font-style ["normal"|"italic"|"oblique"]
	"",		// additional link CSS (careful!)
	"",		// additional hover/focus CSS (careful!)
	"",		// additional visited CSS (careful!)
	"none",// submenu indicator character/image ["text"|"image.gif"|"none"]
	"none",// submenu indicator rollover character/image ["text"|"image.gif"|"none"] (must be the same type)
	"3",		// clipping width of indicator image ["n" pixels] (only when using image arrows)
	"..",		// alt text of indicator image ["text"] (only when using image arrows)
	];
/*
 * udm-custom.js END
 */


/*
 * udm-control.js BEGIN
 */
var umTree=null
um.ready=0
um.pi=function(n){n=parseInt(n,10);return(isNaN(n)?0:n);}
um.un='undefined'
um.m=document
um.gd=function(n){return um.m.getElementById(n);}
um.xd=function(n){n.style.display='block';}
um.xn=function(n){n.style.display='none';}
um.xv=function(n){n.style.visibility='visible';}
um.xh=function(n){n.style.visibility='hidden';}
um.ne=function(n){return n.parentNode.className=='udm';}
if(typeof um.reset==um.un){um.reset=['yes','yes','yes'];}
if(typeof um.hstrip==um.un){um.hstrip=['none','yes'];}
if(typeof um.reset[3]==um.un){um.reset[3]='no';}
um.cx=['orientation','list','behaviors','navbar','items','menus','menuItems','menuClasses','itemClasses']
um.ei=0;um.e=[]
um.v=[];um.w=[]
um.vl=0
um.wl=0
um.ek=0;um.im=[]
um.pcv=function(v){
if(v&&/^[+\-]?[0-9]+$/.test(v)){
v=um.pi(v)
if((um.ei==10||um.ei==11)&&v<1){v=1;}}
if(v&&/\.(gif|png|mng|jpg|jpeg|jpe|bmp)/i.test(v)){
um.im[um.ek]=new Image
um.im[um.ek++].src=um.baseSRC+v}
return v}
um.d=(typeof um.m.getElementById!=um.un&&(typeof um.m.createElement!=um.un||typeof um.m.createElementNS!=um.un)&&typeof navigator.IBM_HPR==um.un)
um.u=navigator.userAgent.toLowerCase()
um.o5=/opera[\/][56]/.test(um.u)
um.k=(navigator.vendor=='KDE')
if(um.o5){um.d=0;}
um.b=(um.d||um.o5)
um.o7=(um.d&&typeof window.opera!=um.un)
um.o75=0
um.o73=0
um.o71=0
if(um.o7){
um.ova=um.pi(um.u.split(/opera[\/]/)[1].match(/[7-9]/)[0])
um.ovi=um.pi(um.u.split(/opera[\/][7-9]\./)[1].match(/^[0-9]/)[0])
um.o75=(um.ova>=8||um.ovi>=5)
um.o73=(um.ova>=8||um.ovi>=3)
um.o71=(um.ova==7&&um.ovi<=1)}
um.google=(navigator.vendor=='Google Inc.')
um.s=(navigator.vendor=='Apple Computer, Inc.'||um.google)
um.s2=(um.s&&typeof XMLHttpRequest!=um.un)
um.s3=(um.s&&um.u.indexOf('version/3')!=-1)
um.s3=(um.s3||um.google)
um.wie=(um.d&&typeof um.m.all!=um.un&&typeof window.opera==um.un&&!um.k)
um.mie=(um.wie&&um.u.indexOf('mac')>0)
um.mx=0
um.omie=0
if(um.mie){
um.wie=0
um.iev=um.u
um.iev=um.iev.split('msie ')
um.iev[1]=um.iev[1].split(';')
um.iev=parseFloat(um.iev[1][0],10)
um.omie=(um.iev<5.2)}
um.ie=(um.wie||um.mie)
um.wie5=(um.wie&&um.u.indexOf('msie 5')>0)
um.wie55=(um.wie&&um.u.indexOf('msie 5.5')>0)
um.wie50=(um.wie5&&!um.wie55)
um.wie6=(um.wie&&um.u.indexOf('msie 6')>0)
if(um.wie6){um.wie55=1;}
um.wie7=(um.wie&&typeof XMLHttpRequest!=um.un)
um.q=(um.wie5||um.mie||((um.wie6||um.wie7||um.o7)&&um.m.compatMode!='CSS1Compat'))
um.og=0
um.dg=0
if(navigator.product=='Gecko'&&!um.s){
um.sub=um.pi(navigator.productSub)
um.og=(um.sub<20030312)
um.dg=(um.sub<20030208)}
if(um.b){
var i=0
do{
if(um.cx[i].indexOf('Classes')<0){
um.cxl=um[um.cx[i]].length
var j=0
do{
if(typeof um[um.cx[i]][j]!=um.un){
um.pv=um.pcv(um[um.cx[i]][j])
um.e[um.ei]=um.pv
um.ei++}
j++}
while(j<um.cxl)}
else{
for(j in um[um.cx[i]]){
if(typeof um[um.cx[i]][j]!='function'){
um.cxl=um[um.cx[i]][j].length
var k=0
do{
if(typeof um[um.cx[i]][j][k]!=um.un){
um.pcv(um[um.cx[i]][j][k])}
k++}
while(k<um.cxl)
if(um.cx[i]=='menuClasses'){
um.v[j]=um[um.cx[i]][j]
um.vl++}
else{
um.w[j]=um[um.cx[i]][j]
um.wl++}}}}
i++}
while(i<9)
um.kb=(typeof um.keys!=um.un&&!(um.mie||um.o7||um.k||(um.s&&!um.s2)))
um.skb=(um.kb||(typeof um.keys!=um.un&&((um.o7&&!um.o71)||um.k)))
um.sp=(typeof um.speech!=um.un&&um.wie)
if(typeof um.speech!=um.un){
um.e[12]='no'
um.e[0]='vertical'}
um.rp=(um.e[3]=='relative')
if(um.wie50&&um.rp){um.e[12]='no';}
um.dir='left'
if(um.e[1]=='rtl'){um.dir='right';um.e[1]='right';}
um.e[13]=(um.e[13]=='yes')?'default':(um.e[13]=='no')?'iframe':um.e[13]
um.hz=(um.wie50&&um.e[13]=='default')||(um.wie&&um.e[13]=='hide')
um.h=um.e[0]=='horizontal'
i=4;do{if(parseFloat(um.e[i],10)<0){um.e[i]='0';}i++}while(i<6)
if(um.h&&um.dir=='right'){um.e[4]='-'+um.e[4];}
um.p=um.e[0]=='popup'
if(um.p){
um.va=['left','top','absolute','-2000px','-2000px']
i=0;do{um.e[i+1]=um.va[i];i++}while(i<5)
um.e[14]=0
um.e[15]=0}
um.ep=0;if(um.e[0]=='expanding'){um.ep=1;um.e[0]='vertical';}
um.a=(um.e[1]=='right')
um.rg=(um.h&&um.e[7]=='rigid'&&um.dir!='right')
um.fe=false;if(um.e[3]=='allfixed'){um.e[3]='fixed';if(um.wie5||um.wie6){um.fe=true;}}
um.f=(um.e[3]=='fixed'&&!(um.wie5||um.wie6||um.og))
um.nc=(um.e[17]==0&&um.e[19]=='collapse')
um.mc=(um.e[61]==0&&um.e[63]=='collapse')
um.nm=((um.og&&um.rp)||(um.omie&&um.h)||((um.dg||um.wie50)&&um.dir=='right'))
um.nr=(um.nm||um.mie)
um.ns=(um.dg||um.o71||(um.wie50&&um.rp)||(um.o7&&um.f)||um.mie)
um.cns=(typeof um.m.createElementNS!=um.un)
um.ss=(um.cns&&typeof um.m.styleSheets!=um.un&&!(um.s||um.k))
if(um.s3){um.ss=1;}
if(um.kb){
i=0;do{um.keys[i]=um.pi(um.keys[i]);i++}while(i<5)
if(um.keys[6]!='none'){um.keys[6]=um.pi(um.keys[6]);}
else{um.keys[6]=-1;}}
um.ni=/(gif|png|mng|jpg|jpeg|jpe|bmp)/i.test(um.e[45])
um.mi=/(gif|png|mng|jpg|jpeg|jpe|bmp)/i.test(um.e[89])}
um.rn=0;um.rv=[]
um.addReceiver=function(f,c){
um.rv[um.rn++]=[f,c]}
um.gp=function(n){
return n?um.vn(n.nodeName).toLowerCase()=='li'?n:this.gp(n.parentNode):null}
um.createElement=function(n,a){
um.el=(um.cns)?um.m.createElementNS('http://www.w3.org/1999/xhtml',n):um.m.createElement(n)
if(typeof a!=um.un){
for(var i in a){
switch(i){
case 'text' :
um.el.appendChild(um.m.createTextNode(a[i]))
break
case 'class' :
um.el.className=a[i]
break
default :
um.el.setAttribute(i,'')
um.el[i]=a[i]
break}}}
return um.el}
/*
 * udm-control.js END
 */



/*
 * udm-style.js BEGIN
 */
if(um.b){um.bk=function(udmP){return(/(gif|png|mng|jpg|jpeg|jpe|bmp)/i.test(udmP))?'background-image:url('+um.baseSRC+udmP+');':(udmP=='none')?'':um.t[33]+'background-color:'+udmP+';';};um.t=['margin-left:','padding-top:','@media screen,projection{','margin-top:0;','padding-left:','border-width:','border-color:','border-style:','margin-left:0;','display:none;','margin-right:','text-decoration:','position:absolute;','margin-bottom:','visibility:hidden;','cursor:default !important;','position:static;','display:block;','@media Screen,Projection{','position:relative;','* html .udm ul ',' a:hover .udmA',' a:focus .udmA',' a:visited .udmA','',' a:visited:hover',' a.nohref:focus',' a.nohref:hover','width:auto;height:auto;','cursor:pointer !important;','background-repeat:no-repeat;background-position:','',' a.nohref .udmA','background-image:none;','* html .udm li a',' a.udmR:visited',' a.udmR .udmA',' a.udmY:visited',' a.udmY .udmA','display:block;visibility:visible;height:0;','overflow:scroll;','overflow:visible;'];var j=0;um.r=[];um.ad=(um.a)?'left':'right';um.dra=(um.dir=='right');um.r[j++]='.udm,.udm li,.udm ul{margin:0;padding:0;list-style-type:none;}';if(um.dra){if(um.h&&um.rp){um.r[j++]='* html .udm{left:100%;left:expression(this.offsetWidth);left/**/:0 !important;}';}um.r[j++]='.udm,.udm li,.udm ul{unicode-bidi:bidi-override;direction:ltr;}';um.r[j++]='.udm a *,.udm a {unicode-bidi/**/:bidi-override;direction/**/:rtl;}';}um.na=(um.h)?'left':um.e[1];um.txl=(um.h)?'left':um.e[35];um.r[j++]='.udm{position:'+um.e[3]+';'+um.na+':0;'+um.e[2]+':0;z-index:'+(um.e[6]+19000)+';width:'+um.e[16]+';'+um.t[15]+'border:none;text-align:left;}';if(um.e[3]=='fixed'){um.r[j++]='* html .udm{'+um.t[12]+'}';um.r[j++]='ul[id="udm"]{'+um.t[12]+'}';um.r[j++]='ul/**/[id="udm"]{position:fixed;}';}if(um.h){um.hfl=(um.hstrip[0]=='none')?'none':um.dir;um.r[j++]='.udm{'+um.bk(um.hstrip[0])+'float:'+um.hfl+';width:100%;}';if(um.hstrip[0]!='none'){um.r[j++]='ul[class="udm"]{float:none;}';um.r[j++]='ul/**/[class="udm"]{float:'+um.dir+';}';um.r[j++]='.udm{margin-'+um.e[2]+':0;'+um.e[2]+':'+um.e[5]+';}';um.r[j++]=um.t[2]+'.udm{margin-'+um.e[2]+':'+um.e[5]+';'+um.e[2]+':0}}';}else{um.r[j++]=um.t[2]+'.udm{float:'+um.dir+';}}';if(um.rp){um.r[j++]='.udm{padding-'+um.e[2]+':'+um.e[5]+';}';}else{um.r[j++]='.udm{margin-'+um.e[2]+':'+um.e[5]+';}';}}if(um.dra){um.r[j++]='.udm>li:first-child{margin-right:'+um.e[4].replace('-','')+';}';}else{um.r[j++]='.udm>li:first-child{'+um.t[0]+um.e[4]+';}';}um.r[j++]=um.t[18]+'.udm>li:first-child{'+um.t[8]+'margin-right:0;}}';um.r[j++]='.udm li{left:'+um.e[4]+';}';um.r[j++]=um.t[2]+'.udm li{'+um.t[19]+'}}';um.r[j++]='.udm ul li{left:0;}';um.r[j++]=':root ul[class^="udm"] li{left:0;'+um.t[16]+'}';um.r[j++]=um.t[18]+':root ul[class^="udm"] li{left:'+um.e[4]+';'+um.t[19]+'}}';um.r[j++]=um.t[18]+'.udm/**/[class="udm"]:not([class="xxx"]) ul li{'+um.t[19]+'left:0;}}';um.r[j++]='.udm li{'+um.t[17]+'width:auto;float:'+um.dir+';}';um.r[j++]='.udm li a{'+um.t[16]+um.t[17]+'float:'+um.dir+';white-space:nowrap;}';um.r[j++]=um.t[2]+'.udm l\\i a{'+um.t[19]+'float:none;}}';um.r[j++]='ul[class^="udm"] li a{'+um.t[19]+'float:none;}';um.r[j++]=um.t[2]+um.t[34]+'{'+um.t[19]+'float:none;}}';if(um.dra){um.r[j++]=um.t[2]+um.t[34]+'{'+um.t[16]+'}}';um.r[j++]='ul[class$="udm"].udm li a{'+um.t[16]+'}';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) li a{'+um.t[19]+'}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm li a{'+um.t[19]+'}}';}um.r[j++]='.udm ul li a{'+um.t[19]+'float:none !important;white-space:normal;}';if(um.nc){um.r[j++]='.udm li a{'+um.t[0]+'-'+um.e[18]+'px;}';um.r[j++]=um.t[18]+'.udm li{'+um.t[0]+'-'+um.e[18]+'px !important;}}';um.r[j++]=um.t[18]+'.udm li a{'+um.t[8]+'}}';um.r[j++]='ul[class^="udm"] li:not(:first-child){'+um.t[0]+'-'+um.e[18]+'px;}';um.r[j++]='.udm ul li{'+um.t[0]+'0 !important;}';um.r[j++]='ul[class^="udm"]:not([class="xxx"]) ul li{'+um.t[0]+'0 !important;}';}else{um.r[j++]='.udm li,.udm li:first-child{'+um.t[10]+um.e[17]+'px;}';um.r[j++]='.udm ul li{'+um.t[8]+um.t[10]+'0;}';if(um.hstrip[1]=='yes'){um.r[j++]='.udm li a{'+um.t[13]+um.e[17]+'px;}';um.r[j++]='.udm ul li a{'+um.t[13]+'0;}';um.r[j++]='ul[class^="udm"]:not([class="xxx"]) li a{'+um.t[13]+'0;}';um.r[j++]='ul[class^="udm"]:not([class="xxx"]) li{'+um.t[13]+um.e[17]+'px;}';um.r[j++]='ul[class^="udm"]:not([class="xxx"]) ul li{'+um.t[13]+'0;}';}}}else{if(um.rp){um.r[j++]='.udm{'+um.t[16]+'padding-'+um.e[1]+':'+um.e[4]+';padding-'+um.e[2]+':'+um.e[5]+';}';}else{um.r[j++]='.udm{margin-'+um.e[1]+':'+um.e[4]+';margin-'+um.e[2]+':'+um.e[5]+';}';}um.ps=(um.p)?'absolute':'static';um.r[j++]='.udm li{'+um.t[17]+'width:'+um.e[16]+';position:'+um.ps+';}';um.ps=(um.p)?'static':'relative';um.r[j++]=um.t[18]+':root .udm/**/[class="udm"] li{position:'+um.ps+';}}';um.r[j++]=um.t[18]+':root .udm/**/[class="udm"] ul li{'+um.t[19]+'}}';um.r[j++]='.udm li a{'+um.t[19]+um.t[17]+'}';if(um.nc){um.r[j++]='.udm a{margin-top:-'+um.e[18]+'px;}';}else{um.r[j++]='.udm li{'+um.t[13]+um.e[17]+'px;}';um.r[j++]='.udm ul li{'+um.t[13]+'0;}';}}um.r[j++]='.udm ul a{margin:0;}';if(um.mc){um.r[j++]='.udm ul li{margin-top:-'+um.e[62]+'px;}';um.r[j++]='.udm ul li:first-child{margin-top:0px;}';}else{um.r[j++]='.udm ul li{'+um.t[13]+um.e[61]+'px !important;}';um.r[j++]='.udm ul li:first-child{margin-top:'+um.e[61]+'px;}';um.r[j++]='.udm ul a{margin-top:0;margin-right:'+um.e[61]+'px !important;margin-bottom:0;'+um.t[0]+um.e[61]+'px !important;}';}um.r[j++]='.udm ul{'+um.bk(um.e[56])+um.t[15]+'width:'+um.e[54]+';height:auto;'+um.t[5]+um.e[51]+'px;'+um.t[6]+um.e[52]+';'+um.t[7]+um.e[53]+';'+um.t[12]+'z-index:'+(um.e[6]+19100)+';padding:'+um.e[55]+'px;'+um.e[57]+'}';um.r[j++]='.udm ul li{'+um.t[15]+'width:100%;'+um.t[16]+'float:none;}';if(!(um.mc)&&um.e[61]>0&&!um.a){um.r[j++]='ul[class^="udm"].udm ul{padding-bottom:'+(um.e[55]+um.e[61])+'px;}';um.r[j++]='ul[class^="udm"].udm:not([class="xxx"]) ul{padding-bottom:'+um.e[55]+'px;}';um.r[j++]='@media all and (min-width:0px){ul[class^="udm"].udm ul{padding-bottom:'+um.e[55]+'px;}}';}um.r[j++]='.udm ul{'+um.t[9]+um.t[14]+'}';um.r[j++]='html/**/[xmlns] .udm u\\l{'+um.t[39]+um.t[40]+'left:-10000px;}';um.r[j++]=um.t[2]+um.t[20]+'{'+um.t[39]+um.t[40]+'top:-10000px;}}';um.r[j++]='ul.udm/**/[class^="udm"] u\\l{'+um.t[39]+um.t[41]+'left:-1000em;}';if(um.dir=='right'){um.r[j++]='ul.udm[class$="udm"] ul{top:-1000em;left:0;}';um.r[j++]='ul.udm[class$="udm"]:not([class="xxx"]) ul{top:0;left:-1000em;}';}if(um.e[45]!='none'||um.e[89]!='none'){um.r[j++]='.udm a .udmA{visibility:hidden;margin:0 '+um.e[26]+'px;'+um.t[17]+um.t[29]+um.t[12]+um.ad+':0;top:0;text-align:'+um.ad+';border:none;cursor:inherit !important;}';um.r[j++]='.udm a .udmA img{display:block;}';um.r[j++]='.udm ul a .udmA{margin:0 '+um.e[70]+'px;}';if(um.a){um.r[j++]='* html .udm '+((um.h)?'ul ':'')+'a{height:1%;}';um.r[j++]='ul[class$="udm"].udm '+((um.h)?'ul ':'')+'a{height:1%;}';if(um.h&&um.dir!='right'){um.r[j++]='* html .udm a/**/ {width:expression("auto",this.runtimeStyle.width=(!document.compatMode||compatMode=="BackCompat")?"100%":(this.parentNode.offsetWidth-(isNaN(parseInt(this.currentStyle.marginRight))?0:parseInt(this.currentStyle.marginRight))-(isNaN(parseInt(this.currentStyle.marginLeft))?0:parseInt(this.currentStyle.marginLeft))-(isNaN(parseInt(this.currentStyle.paddingRight))?0:parseInt(this.currentStyle.paddingRight))-(isNaN(parseInt(this.currentStyle.paddingLeft))?0:parseInt(this.currentStyle.paddingLeft))-(isNaN(parseInt(this.currentStyle.borderRightWidth))?0:parseInt(this.currentStyle.borderRightWidth))-(isNaN(parseInt(this.currentStyle.borderLeftWidth))?0:parseInt(this.currentStyle.borderLeftWidth))));}';um.r[j++]='* html .udm ul a{width:auto;}';um.r[j++]='ul[class$="udm"].udm a .udmA{left:'+(um.e[26])+'px;}';um.r[j++]='ul[class$="udm"].udm ul a .udmA{left:0;}';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) a .udmA{left:0;}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm a .udmA{left:0;}}';}if(um.h&&um.dir=='right'){um.r[j++]='ul[class$="udm"].udm a .udmA{top:expression("0",um.q?"0":"'+um.e[18]+'px");left:expression("0",um.q?"0":"'+(um.e[18])+'px");}';um.r[j++]='ul[class$="udm"].udm ul a .udmA{top:expression("0",um.q?"0":"'+(um.e[55]+um.e[61]+um.e[62])+'px");left:expression("0",um.q?"0":"'+(um.e[55]+um.e[61]+um.e[62])+'px");}';}}else{um.r[j++]='* html .udm a .udmA{'+um.ad+':'+um.e[18]+'px;top:'+um.e[18]+'px;}';um.r[j++]=um.t[20]+'a .udmA{'+um.ad+':'+(um.e[62]+um.e[61])+'px;top:'+um.e[62]+'px;}';}}if(um.e[58]!='none'){um.mrg=um.t[0]+um.e[59]+';margin-top:'+(um.e[59]==0?0:um.e[59].replace('-',''))+';';um.r[j++]='.udm .udmS{'+um.mrg+'}';um.r[j++]='.udm .udmS{'+um.bk(um.e[58])+um.t[15]+um.t[12]+'z-index:'+(um.e[6]+19050)+';'+um.t[28]+'left:0px;top:0px;'+um.t[9]+um.e[60]+'}';if(/filter\:progid\:DXImageTransform\.Microsoft\.Shadow/.test(um.e[60])){um.r[j++]=um.t[2]+'* html .udm .udmS/**/ {'+um.t[33]+'background:#ccc;'+um.t[8]+um.t[3]+'}}';um.r[j++]='ul[class$="udm"].udm .udmS{'+um.t[33]+'background:#ccc;'+um.t[8]+um.t[3]+'}';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) .udmS{background:transparent;'+um.bk(um.e[58])+um.mrg+'}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm .udmS{background:transparent;'+um.bk(um.e[58])+um.mrg+'}}';}}um.r[j++]='.udm a,.udm a:link,.udm a.nohref{'+um.bk(um.e[28])+um.t[29]+'z-index:'+um.e[6]+';text-align:'+um.txl+';'+um.t[7]+um.e[21]+';'+um.t[6]+um.e[20]+';'+um.t[4]+um.e[26]+'px;padding-right:'+um.e[26]+'px;'+um.t[1]+um.e[27]+'px !important;padding-bottom:'+um.e[27]+'px !important;'+um.t[11]+um.e[34]+';color:'+um.e[36]+';'+um.t[5]+um.e[18]+'px;font-style:'+um.e[39]+';font-family:'+um.e[32]+';font-weight:'+um.e[33]+' !important;}';um.r[j++]='.udm a,.udm a.nohref{font-size:'+um.e[31]+';}';if(um.e[45]!='none'||um.e[89]!='none'){um.r[j++]='.udm a .udmA,.udm a:link .udmA,.udm'+um.t[32]+'{font-family:'+um.e[32]+';font-weight:'+um.e[33]+' !important;}';}if(um.e[42]!=''){um.r[j++]='.udm li a,.udm li a:link,.udm li a.nohref,.udm li a:visited{'+um.e[42]+'}';}um.r[j++]='.udm li a:visited{'+um.bk(um.e[30])+um.t[5]+um.e[18]+'px;color:'+um.e[38]+';font-style:'+um.e[41]+';'+um.t[7]+um.e[25]+';'+um.t[6]+um.e[24]+';'+um.e[44]+'}';um.r[j++]='.udm li a.udmR,.udm li a.udmY,.udm li'+um.t[35]+',.udm li'+um.t[37]+',.udm li a:hover,.udm li a:focus,.udm li'+um.t[27]+',.udm li'+um.t[26]+'{font-style:'+um.e[40]+';'+um.bk(um.e[29])+um.t[11]+um.e[34]+';color:'+um.e[37]+';'+um.t[6]+um.e[22]+';'+um.t[7]+um.e[23]+';'+um.t[5]+um.e[18]+'px;'+um.e[43]+'}';um.r[j++]='* html .udm li a:active{font-style:'+um.e[40]+';'+um.bk(um.e[29])+um.t[11]+um.e[34]+';color:'+um.e[37]+';'+um.t[6]+um.e[22]+';'+um.t[7]+um.e[23]+';'+um.t[5]+um.e[18]+'px;'+um.e[43]+'}';um.r[j++]='.udm ul a,.udm ul a:link,.udm ul a.nohref{'+um.bk(um.e[72])+'text-align:'+um.e[79]+';'+um.t[5]+um.e[62]+'px;'+um.t[7]+um.e[65]+';'+um.t[6]+um.e[64]+';'+um.t[4]+um.e[70]+'px;padding-right:'+um.e[70]+'px;'+um.t[1]+um.e[71]+'px !important;padding-bottom:'+um.e[71]+'px !important;'+um.t[11]+um.e[78]+';color:'+um.e[80]+';font-style:'+um.e[83]+';font-size:'+um.e[75]+';font-family:'+um.e[76]+';font-weight:'+um.e[77]+' !important;}';if(um.e[89]!='none'){um.r[j++]='.udm ul a .udmA,.udm ul a:link .udmA,.udm ul'+um.t[32]+'{font-family:'+um.e[76]+';font-weight:'+um.e[77]+' !important;}';}if(um.e[86]!=''){um.r[j++]='.udm ul li a,.udm ul li a:link,.udm ul li a.nohref,.udm ul li a:visited{'+um.e[86]+'}';}um.r[j++]='.udm ul li a:visited,'+um.t[20]+'li a:visited{'+um.bk(um.e[74])+'color:'+um.e[82]+';font-style:'+um.e[85]+';'+um.t[5]+um.e[62]+'px;'+um.t[7]+um.e[69]+';'+um.t[6]+um.e[68]+';'+um.e[88]+'}';um.r[j++]='.udm ul li a.udmR,.udm ul li a.udmY,.udm ul li'+um.t[35]+',.udm ul li'+um.t[37]+',.udm ul li a:hover,.udm ul li a:focus,.udm ul li'+um.t[27]+',.udm ul li'+um.t[26]+',.udm ul li'+um.t[25]+'{font-style:'+um.e[84]+';'+um.bk(um.e[73])+um.t[11]+um.e[78]+';color:'+um.e[81]+';'+um.t[6]+um.e[66]+';'+um.t[7]+um.e[67]+';'+um.t[5]+um.e[62]+'px;'+um.e[87]+'}';um.r[j++]='* html .udm ul li a:active{font-style:'+um.e[84]+';'+um.bk(um.e[73])+um.t[11]+um.e[78]+';color:'+um.e[81]+';'+um.t[6]+um.e[66]+';'+um.t[7]+um.e[67]+';'+um.t[5]+um.e[62]+'px;'+um.e[87]+'}';um.r[j++]='.udm a.nohref,.udm ul a.nohref{cursor:default !important;}';um.r[j++]='.udm h3,.udm h4,.udm h5,.udm h6{display:block;background:none;margin:0;padding:0;border:none;font-size:1em;font-weight:normal;text-decoration:none;}';if(um.h){um.r[j++]='.udm h3,.udm h4,.udm h5,.udm h6{display:inline;}';um.r[j++]='.udm h\\3,.udm h\\4,.udm h\\5,.udm h\\6{display:block;}';um.r[j++]='ul[class^="udm"] h3,ul[class^="udm"] h4,ul[class^="udm"] h5,ul[class^="udm"] h6{display:block;}';um.r[j++]='* html .udm h3,* html .udm h4,* html .udm h5,* html .udm h6{display:block;}';um.r[j++]='* html .udm h3,* html .udm h4,* html .udm h5,* html .udm h6{width:expression("auto",this.runtimeStyle.width=this.parentNode.offsetWidth);width/**/:auto;}';um.r[j++]='* html .udm ul h3,* html .udm ul h4,* html .udm ul h5,* html .udm ul h6{width:expression("auto",this.runtimeStyle.width=this.parentNode.currentStyle.width);width/**/:auto;}';}else{um.r[j++]='.udm h1,.udm h2,.udm h3,.udm h4,.udm h5,.udm h6{width:100%;}';}um.r[j++]=um.t[2]+'* html .udm li{display:inline;}}';um.floats=(um.h)?um.dir:um.e[1];um.r[j++]=um.t[2]+'* html .udm li,* html .udm ul li{display/**/:block;float/**/:'+um.floats+';}}';if(um.h){um.r[j++]=um.t[2]+'* html .udm li,'+um.t[20]+'li{clear:none;}}';}um.r[j++]='ul[class$="udm"].udm li,ul[class$="udm"].udm ul li{display:block;float:'+um.floats+';}';um.floats=(um.h)?um.dir:'none';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) li{float:'+um.floats+';}';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) ul li{float:none;}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm li{float:'+um.floats+';}}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm ul li{float:none;}}';if(um.e[13]=='default'||um.e[13]=='hide'){um.r[j++]='select{visibility:visible;}';}if(um.e[13]=='default'||um.e[13]=='iframe'){um.r[j++]='.udm .udmC{'+um.t[12]+'left:0;top:0;z-index:'+(um.e[6]+19020)+';'+um.t[28]+'filter:alpha(opacity=0);}';}if(um.vl>0){for(i in um.v){if(typeof um.v[i]!='function'){um.r[j++]='.udm ul.'+i+'{width:'+um.v[i][2]+';'+um.t[6]+um.v[i][0]+';'+um.t[7]+um.v[i][1]+';'+um.bk(um.v[i][3])+um.v[i][4]+'}';um.mrg=um.t[0]+um.v[i][6]+';margin-top:'+um.v[i][6].replace('-','')+';';um.r[j++]='.udm span.'+i+'{'+um.mrg+'}';if(/filter\:progid\:DXImageTransform\.Microsoft\.Shadow/.test(um.v[i][7])){um.r[j++]=um.t[2]+'* html .udm span.'+i+'/**/ {'+um.t[8]+um.t[3]+'}}';um.r[j++]='ul[class$="udm"].udm span.'+i+'{'+um.t[8]+um.t[3]+'}';um.r[j++]='ul[class$="udm"].udm:not([class="xxx"]) span.'+i+'{'+um.mrg+'}';um.r[j++]='@media all and (min-width:0px){ul[class$="udm"].udm span.'+i+'{'+um.mrg+'}}';}if(um.v[i][5]!='none'){um.r[j++]='.udm span.'+i+'{'+um.bk(um.v[i][5])+'filter:none;'+um.v[i][7]+'}';}}}}if(um.wl>0){for(i in um.w){if(typeof um.w[i]!='function'){um.bg=um.bk(um.w[i][6]);um.r[j++]='.udm li.'+i+' a,.udm li.'+i+' a:link,.udm li.'+i+' a.nohref{'+um.t[6]+um.w[i][0]+';'+um.t[7]+um.w[i][1]+';'+um.t[5]+um.e[62]+'px;'+um.bg+um.t[11]+um.w[i][12]+';text-align:'+um.w[i][13]+';color:'+um.w[i][14]+';font-style:'+um.w[i][17]+';font-size:'+um.w[i][9]+';}';um.r[j++]='.udm li.'+i+' a,.udm li.'+i+' a:link,.udm li.'+i+um.t[32]+',.udm li.'+i+' a,.udm li.'+i+um.t[32]+'{font-family:'+um.w[i][10]+';font-weight:'+um.w[i][11]+' !important;}';if(um.w[i][20]!=''){um.r[j++]='.udm ul li.'+i+' a,.udm ul li.'+i+' a:link,.udm ul li.'+i+' a.nohref,.udm ul li.'+i+' a:visited{'+um.w[i][20]+'}';}um.r[j++]='.udm ul li.'+i+' a:visited,'+um.t[20]+'li.'+i+' a:visited{'+um.bk(um.w[i][8])+'color:'+um.w[i][16]+';font-style:'+um.w[i][19]+';'+um.t[5]+um.e[62]+'px;'+um.t[6]+um.w[i][4]+';'+um.t[7]+um.w[i][5]+';'+um.w[i][22]+'}';um.r[j++]='.udm ul li.'+i+' a.udmR,.udm ul li.'+i+' a.udmY,.udm ul li.'+i+um.t[35]+',.udm ul li.'+i+um.t[37]+',.udm ul li.'+i+' a:hover,.udm ul li.'+i+' a:focus,.udm ul li.'+i+um.t[27]+',.udm ul li.'+i+um.t[26]+',.udm ul li.'+i+um.t[25]+'{'+um.bk(um.w[i][7])+um.t[11]+um.w[i][12]+';color:'+um.w[i][15]+';'+um.t[5]+um.e[62]+'px;'+um.t[6]+um.w[i][2]+';'+um.t[7]+um.w[i][3]+';font-style:'+um.w[i][18]+';'+um.w[i][21]+'}';um.r[j++]='* html .udm li.'+i+' a:active{'+um.bk(um.w[i][7])+um.t[11]+um.w[i][12]+';color:'+um.w[i][15]+';'+um.t[5]+um.e[62]+'px;'+um.t[6]+um.w[i][2]+';'+um.t[7]+um.w[i][3]+';font-style:'+um.w[i][18]+';'+um.w[i][21]+'}';}}}um.rLen=um.r.length;if(um.ss||um.o73){um.at={'type':'text/css','media':'screen,projection'};um.stn=um.createElement('html:style',um.at);document.getElementsByTagName('head')[0].appendChild(um.stn);if(um.ss){if(document.styleSheets.length==0){um.ss=0;}else{um.sy=document.styleSheets.item(document.styleSheets.length-1);i=0;do{try{um.sy.insertRule(um.r[i++],um.sy.cssRules.length);}catch(err){}}while(i<um.rLen);}}else if(um.o73){i=0;do{um.stn.appendChild(document.createTextNode(um.r[i++]));}while(i<um.rLen);}}if(!(um.ss||um.o73)){um.styStr='';i=0;do{um.styStr+=um.r[i++];}while(i<um.rLen);document.write('<style type="text/css" media="screen,projection">'+um.styStr+'</style>');}}
/*
 * udm-style.js END
 */



 
 /*
  * Interactive Map JS BEGIN
  */
ns = (document.layers)? true:false;
ie = (document.all)? true:false;
op = (navigator.userAgent.indexOf("Opera")!=-1 && document.getElementById)? true:false;
mo = (!document.all && document.getElementById)? true:false;

var last_num = '';

if (document.images) {
	img_0 = new Image(); img_0.src = "/files/400519/background.png";

	nav_1on = new Image(); nav_1on.src = "/files/400519/1.png";
	nav_2on = new Image(); nav_2on.src = "/files/400519/2.png";
	nav_3on = new Image(); nav_3on.src = "/files/400519/3.png";
	nav_4on = new Image(); nav_4on.src = "/files/400519/4.png";
	nav_5on = new Image(); nav_5on.src = "/files/400519/5.png";
	nav_6on = new Image(); nav_6on.src = "/files/400519/6.png";
	nav_7on = new Image(); nav_7on.src = "/files/400519/7.png";
	nav_8on = new Image(); nav_8on.src = "/files/400519/8.png";
	nav_9on = new Image(); nav_9on.src = "/files/400519/9.png";
	nav_10on = new Image(); nav_10on.src = "/files/400519/10.png";
	nav_11on = new Image(); nav_11on.src = "/files/400519/11.png";
	nav_12on = new Image(); nav_12on.src = "/files/400519/12.png";
	nav_13on = new Image(); nav_13on.src = "/files/400519/13.png";
	nav_14on = new Image(); nav_14on.src = "/files/400519/14.png";
	nav_15on = new Image(); nav_15on.src = "/files/400519/15.png";

	navoff = new Image(); navoff.src = "/files/400519/green_map.png";

	img_1 = new Image(); img_1.src = "/files/400519/1.jpg";
	img_2 = new Image(); img_2.src = "/files/400519/2.jpg";
	img_3 = new Image(); img_3.src = "/files/400519/3.jpg";
	img_4 = new Image(); img_4.src = "/files/400519/4.jpg";
	img_5 = new Image(); img_5.src = "/files/400519/5.jpg";
	img_6 = new Image(); img_6.src = "/files/400519/6.jpg";
	img_7 = new Image(); img_7.src = "/files/400519/7.jpg";
	img_8 = new Image(); img_8.src = "/files/400519/8.jpg";
	img_9 = new Image(); img_9.src = "/files/400519/9.jpg";
	img_10 = new Image(); img_10.src = "/files/400519/10.jpg";
	img_11 = new Image(); img_11.src = "/files/400519/11.jpg";
	img_12 = new Image(); img_12.src = "/files/400519/12.jpg";
	img_13 = new Image(); img_13.src = "/files/400519/13.jpg";
	img_14 = new Image(); img_14.src = "/files/400519/14.jpg";
	img_15 = new Image(); img_15.src = "/files/400519/15.jpg";
}

function changeHTML(divID,html) {
	if (ns) {
		var lyr = document.layers[divID].document;
		lyr.open();
		lyr.write(html);
		lyr.close();
	}
	
	else if (ie) {
		document.all[divID].innerHTML =html;
	}
	
	else if (op || mo) {
		document.getElementById(divID).innerHTML = html;
	}
}

function switchDivOn(divID) {
	document.getElementById(divID).style.display = "inline";
	document.all.info_0.style.display = "none";
}

function switchDivOff(divID) {
	document.getElementById(divID).style.display = "none";
	document.all.info_0.style.display = "inline";
}

function rollOn(num,text){
	str = "window.status = '" + text + "'";
	if (document.all) setTimeout(str,5); // this is a hack to fix bug in IE on PC
    else window.status = text;
	if (document.images) {
		document.navs.src=eval("nav"+num+"on.src");
		changeHTML('link'+num,'<u>'+text+'</u>');
		if (last_num)
			switchDivOff('info'+last_num);
		switchDivOn('info'+num);
	}
}


function rollOn2(num,text){
	str = "window.status = '" + text + "'";
	if (document.all) setTimeout(str,5);
    else window.status = text;
	if (document.images) {
		document.navs.src=eval("nav"+num+"on.src");
		if (last_num)
			switchDivOff('info'+last_num);
		switchDivOn('info'+num);
	}
}

function rollOff(num,text){
    window.status = "";	
	if (document.images) {
		document.navs.src=eval("nav"+num+"on.src");
		changeHTML('link'+num,text);		
		last_num = num;
	}
}

function rollOff2(num){
    window.status = "";	
	if (document.images) {
		document.navs.src=eval("nav"+num+"on.src");
		last_num = num;
	}
}
 
 /*
  * Interactive Map JS END
  */
 
 
 