
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}
if(p==this){return false;}
var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}
if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);(function($){$.fn.easySlider=function(options){var defaults={prevId:'prevBtn',prevText:'Previous',nextId:'nextBtn',nextText:'Next',controlsShow:true,controlsBefore:'',controlsAfter:'',controlsFade:true,firstId:'firstBtn',firstText:'First',firstShow:false,lastId:'lastBtn',lastText:'Last',lastShow:false,vertical:false,speed:800,auto:false,pause:2000,continuous:false};var options=$.extend(defaults,options);this.each(function(){var obj=$(this);var s=$("li",obj).length;var w=$("li",obj).width();var h=$("li",obj).height();obj.width(w);obj.height(h);obj.css("overflow","hidden");var ts=s-1;var t=0;$("ul",obj).css('width',s*w);if(!options.vertical)$("li",obj).css('float','left');if(options.controlsShow){var html=options.controlsBefore;if(options.firstShow)html+='<span id="'+options.firstId+'"><a href=\"javascript:void(0);\">'+options.firstText+'</a></span>';html+=' <span id="'+options.prevId+'"><a href=\"javascript:void(0);\">'+options.prevText+'</a></span>';html+=' <span id="'+options.nextId+'"><a href=\"javascript:void(0);\">'+options.nextText+'</a></span>';if(options.lastShow)html+=' <span id="'+options.lastId+'"><a href=\"javascript:void(0);\">'+options.lastText+'</a></span>';html+=options.controlsAfter;$(obj).after(html);};$("a","#"+options.nextId).click(function(){animate("next",true);});$("a","#"+options.prevId).click(function(){animate("prev",true);});$("a","#"+options.firstId).click(function(){animate("first",true);});$("a","#"+options.lastId).click(function(){animate("last",true);});function animate(dir,clicked){var ot=t;switch(dir){case"next":t=(ot>=ts)?(options.continuous?0:ts):t+1;break;case"prev":t=(t<=0)?(options.continuous?ts:0):t-1;break;case"first":t=0;break;case"last":t=ts;break;default:break;};var diff=Math.abs(ot-t);var speed=diff*options.speed;if(!options.vertical){p=(t*w*-1);$("ul",obj).animate({marginLeft:p},speed);}else{p=(t*h*-1);$("ul",obj).animate({marginTop:p},speed);};if(!options.continuous&&options.controlsFade){if(t==ts){$("a","#"+options.nextId).hide();$("a","#"+options.lastId).hide();}else{$("a","#"+options.nextId).show();$("a","#"+options.lastId).show();};if(t==0){$("a","#"+options.prevId).hide();$("a","#"+options.firstId).hide();}else{$("a","#"+options.prevId).show();$("a","#"+options.firstId).show();};};if(clicked)clearTimeout(timeout);if(options.auto&&dir=="next"&&!clicked){;timeout=setTimeout(function(){animate("next",false);},diff*options.speed+options.pause);};};var timeout;if(options.auto){;timeout=setTimeout(function(){animate("next",false);},options.pause);};if(!options.continuous&&options.controlsFade){$("a","#"+options.prevId).hide();$("a","#"+options.firstId).hide();};});};})(jQuery);(function($){$.gsuggest=function(settings){$.gsuggest.config={'debug':true,'url':'/suggest.cfc','size':10,'cacheenabled':true,'cacheaggressive':false,'cachefoward':false,'casesensitive':false,'sort':false,'css0':{'position':'absolute','z-index':'1','display':'none'},'css':{'background-color':'#ffffff','border':'solid 1px #000000','margin':'0px','cursor':'pointer','color':'#000000','padding':'0px'},'highlight':'#bcd5ff'};if(settings)$.extend($.gsuggest.config,settings);var fillok=true;var cacheinit=true;var timerstart=null;var timerend=null;$.gsuggest.cachedata=[];$.gsuggest.cachekey="";$.gsuggest.synctext=false;$.gsuggest.mouseoverok=false;$.gsuggest.mousepos="";$.gsuggest.setcase=function(val){if($.gsuggest.config.casesensitive)
return val;else
return val.toLowerCase();};$.gsuggest.keydown=function(obj,e){clearTimeout($.gsuggest.suggestDelay);if(e.which==38||e.which==40){$(obj).next().children("div:eq("+$(obj).attr("suggestPos")+")").blur();switch(e.which){case 38:if(parseInt($(obj).attr("suggestPos"))-1<-1)
$(obj).attr("suggestPos",$(obj).attr("suggestTtl"));else
$(obj).attr("suggestPos",Math.max(-2,parseInt($(obj).attr("suggestPos"))-1));break;case 40:if(parseInt($(obj).attr("suggestPos"))+1>parseInt($(obj).attr("suggestTtl")))
$(obj).attr("suggestPos","-1");else
$(obj).attr("suggestPos",Math.min($(obj).attr("suggestTtl"),parseInt($(obj).attr("suggestPos"))+1));break;}
$.gsuggest.synctext=true;$(obj).next().children("div:eq("+$(obj).attr("suggestPos")+")").focus();}else if(e.which==13){if($(obj).attr("nosubmit")!=null){return false;}}};$.gsuggest.keyup=function(obj){var objval=obj.value;if($.gsuggest.config.debug)timerstart=new Date().getTime();if(objval==$(obj).attr("suggestLast"))return;if(objval.length==0){$(obj).attr("suggestLast",objval);$(obj).next().hide();return;}
$(obj).attr("suggestLast",objval);var method=obj.form.name+'_'+obj.name;var surl=$.gsuggest.config.url+"?method=find&query="+objval+"&callback=?"
var data,datat;function fill(data){while(!fillok){};fillok=false;$(obj).next().empty();if($.gsuggest.config.sort)data.sort();$(obj).attr("suggestTtl",Math.min($.gsuggest.config.size,data.length));for(i=0;i<data.length;i++){$(obj).next().append("<div style=\"padding: 3px;\">"+data[i].substr(0,objval.length)+"<strong>"+data[i].substring(objval.length)+"</strong></div>");if(i==$.gsuggest.config.size)break;}
if(i>0&&!(data.length==1&&$.gsuggest.setcase(data[0])==$.gsuggest.setcase(objval))){$(obj).attr("suggestPos","-1");$.gsuggest.synctext=false;$.gsuggest.mouseoverok=false;$(obj).next().show();}else{$(obj).next().hide();}
fillok=true;}
if(objval.indexOf($.gsuggest.cachekey)!=0||(!$.gsuggest.config.cacheforward&&!($(obj).attr("suggestTtl")<$.gsuggest.config.size))){$.gsuggest.cachekey=$.gsuggest.setcase(objval);}
if($.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.cachekey]||($(obj).attr("suggest_value")!=null&&$(obj).attr("suggest_value").length>0)){if(!$.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.cachekey]||!$.gsuggest.config.cacheenabled){$.gsuggest.config.cacheforward=true;datat=eval($(obj).attr("suggest_value"));if($.gsuggest.config.debug)$("#_debug").html("CACHE INIT<br>"+datat.join("<br>"));}else{datat=$.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.cachekey];if($.gsuggest.config.debug)$("#_debug").html(datat.join("<br>"));}
data=[];$.each(datat,function(i,val){if($.gsuggest.setcase(val).indexOf($.gsuggest.setcase(objval))==0){data.push(val);}})
if($.gsuggest.config.cacheenabled){$.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.setcase(objval)]=data;$.gsuggest.cachekey=$.gsuggest.setcase(objval)}
fill(data);}else{$.getJSON(surl,function(data){if($.gsuggest.config.cacheenabled){$.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.setcase(objval)]=data;$.gsuggest.cachekey=$.gsuggest.setcase(objval);if($.gsuggest.config.debug)$("#_debug").html("CACHE INIT<br>"+$.gsuggest.cachedata[$(obj).attr("id")+$.gsuggest.setcase(objval)].join("<br>"));}fill(data)});}
if($.gsuggest.config.debug){timerend=new Date().getTime();$("#_debug_timer").html(timerend-timerstart);}};$("input[suggest=yes]").each(function(i){if(this.id==null||this.id=='')
$(this).attr("id","_g??gg?_"+i)
Init("#"+this.id)});function Init(id){var suggest_id="_suggestBox";var suggest_idChildren="#"+suggest_id+" > *";$(id).attr("autocomplete","off");$(id).keyup(function(e){if(e.which==27){$(this).blur();$(this).focus();if(!$.gsuggest.config.cacheaggressive){$.gsuggest.cachedata=[];$.gsuggest.cachekey=""}}else if(e.which<37||e.which>40){$.gsuggest.suggestDelay=setTimeout("$.gsuggest.keyup(document.getElementById('"+$(this).attr("id")+"'))",(!!$.gsuggest.cachedata[$(this).attr("id")+$.gsuggest.cachekey])?50:(e.which==13)?0:500);}});$(id).click(function(){$(this).blur();$(this).focus()});$(id).blur(function(){$.gsuggest.mouseout=false;$(this).next().hide("slow");$(this).attr("suggestPos","-1");});$(id).attr("suggestPos","-1");$(id).keydown(function(e){return $.gsuggest.keydown(this,e)});$(suggest_idChildren).live("mouseover",function(e){if(!$.gsuggest.mouseoverok)return false;$(this).parent().children("div:eq("+$(this).parent().prev().attr("suggestPos")+")").blur();$(this).parent().prev().attr("suggestPos",$(this).prevAll().length);$(this).focus();$.gsuggest.synctext=true;return false});$(suggest_idChildren).live("mouseout",function(){$(this).blur();return false;});$(suggest_idChildren).live("focus",function(){$(this).css("background-color",$.gsuggest.config.highlight);if($.gsuggest.synctext){$(this).parent().prev().attr("value",$(this).text())};return false;});$(suggest_idChildren).live("blur",function(){$(this).css("background-color",$(this).parent().css("background-color"));$(this).parent().prev().attr("value",$(this).parent().prev().attr("suggestLast"));return false;});$(suggest_idChildren).live("click",function(){$(this).parent().prev().attr("suggestLast",$(this).text());$(this).blur();$(this).parent().prev().focus();return false;});$(id).after("<div id=\""+suggest_id+"\" style=\"display:none\"></div>");$(id).next().css($.gsuggest.config.css0);$(id).next().css($.gsuggest.config.css);$(id).next().width($(id).width());$(id).next().css("top",35);$(id).next().css("width",415);$(window).resize(function(){$(id).next().css("top",$(id).offset().top+$(id).height()+7);});};};})(jQuery);jQuery(document).ready(function(){$(this).mousemove(function(e){if($.gsuggest.mousepos!=e.pageX+'-'+e.pageY){$.gsuggest.synctext=true;$.gsuggest.mouseoverok=true;}
$.gsuggest.mousepos=e.pageX+'-'+e.pageY;});})
var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF&&typeof doc.appendChild!=UNDEF&&typeof doc.replaceChild!=UNDEF&&typeof doc.removeChild!=UNDEF&&typeof doc.cloneNode!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0;}}
else if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7");}
catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always";}
catch(e){if(playerVersion[0]==6){fp6Crash=true;}}
if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX);}
catch(e){}}}
if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)];}}
catch(e){}}}
var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac};}();var onDomLoad=function(){if(!ua.w3cdom){return;}
addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<scr"+"ipt id=__ie_ondomload defer=true src=//:></scr"+"ipt>");var s=getElementById("__ie_ondomload");if(s){s.onreadystatechange=function(){if(this.readyState=="complete"){this.parentNode.removeChild(this);callDomLoadFunctions();}};}}
catch(e){}}
if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions();}},10);}
if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null);}
addLoadEvent(callDomLoadFunctions);}();function callDomLoadFunctions(){if(isDomLoaded){return;}
if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t);}
catch(e){return;}}
isDomLoaded=true;if(timer){clearInterval(timer);timer=null;}
var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]();}}
function addDomLoadEvent(fn){if(isDomLoaded){fn();}
else{domLoadFnArr[domLoadFnArr.length]=fn;}}
function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false);}
else if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false);}
else if(typeof win.attachEvent!=UNDEF){win.attachEvent("onload",fn);}
else if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn();};}
else{win.onload=fn;}}
function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj);}
setVisibility(id,true);}
else if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i]);}
else{displayAltContent(obj);}}}
else{setVisibility(id,true);}}}
function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName.toLowerCase()=="data"){e.setAttribute("src",a[i].nodeValue);}
else{e.setAttribute(a[i].nodeName,a[i].nodeValue);}}}
var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName.toLowerCase()=="param"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"));}}}
obj.parentNode.replaceChild(e,obj);}}
function fixObjectLeaks(id){if(ua.ie&&ua.win&&hasPlayerVersion("8.0.0")){win.attachEvent("onunload",function(){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=function(){};}}
obj.parentNode.removeChild(obj);}});}}
function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId;}}
else{storedAltContent=abstractAltContent(obj);}
if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310";}
if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137";}
doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj);});}
createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId);}}
function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";win.attachEvent("onload",function(){obj.parentNode.removeChild(obj);});}
else{obj.parentNode.replaceChild(abstractAltContent(obj),obj);}}
function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML;}
else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true));}}}}}
return ac;}
function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(typeof attObj.id==UNDEF){attObj.id=id;}
if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i=="data"){parObj.movie=attObj[i];}
else if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"';}
else if(i!="classid"){att+=' '+i+'="'+attObj[i]+'"';}}}
var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />';}}
el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+'>'+par+'</object>';fixObjectLeaks(attObj.id);r=getElementById(attObj.id);}
else if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k=="data"){e.setAttribute("src",attObj[k]);}
else if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k]);}
else if(k!="classid"){e.setAttribute(k,attObj[k]);}}}
for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l!="movie"){e.setAttribute(l,parObj[l]);}}}
el.parentNode.replaceChild(e,el);r=e;}
else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m]);}
else if(m!="classid"){o.setAttribute(m,attObj[m]);}}}
for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n!="movie"){createObjParam(o,n,parObj[n]);}}
el.parentNode.replaceChild(o,el);r=o;}
return r;}
function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p);}
function getElementById(id){return doc.getElementById(id);}
function createElement(el){return doc.createElement(el);}
function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10);v[2]=parseInt(v[2],10);return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false;}
function createCSS(sel,decl){if(ua.ie&&ua.mac){return;}
var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"));}
h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl);}}}
function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded){getElementById(id).style.visibility=v;}
else{createCSS("#"+id,"visibility:"+v);}}
function getTargetVersion(obj){if(!obj)
return 0;var c=obj.childNodes;var cl=c.length;for(var i=0;i<cl;i++){if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="object"){c=c[i].childNodes;cl=c.length;i=0;}
if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param"&&c[i].getAttribute("name")=="swfversion"){return c[i].getAttribute("value");}}
return 0;}
function getExpressInstall(obj){if(!obj)
return"";var c=obj.childNodes;var cl=c.length;for(var i=0;i<cl;i++){if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="object"){c=c[i].childNodes;cl=c.length;i=0;}
if(c[i].nodeType==1&&c[i].nodeName.toLowerCase()=="param"&&c[i].getAttribute("name")=="expressinstall"){return c[i].getAttribute("value");}}
return"";}
return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr){return;}
var obj=document.getElementById(objectIdStr);var xi=getExpressInstall(obj);var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr?swfVersionStr:getTargetVersion(obj);regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:((xi!="")?xi:false);regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false);},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom&&isDomLoaded){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o;}
else if(typeof n.SetVariable!=UNDEF){r=n;}}}
return r;},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return;}
widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att=(typeof attObj==OBJECT)?attObj:{};att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par=(typeof parObj==OBJECT)?parObj:{};if(typeof flashvarsObj==OBJECT){for(var i in flashvarsObj){if(flashvarsObj[i]!=Object.prototype[i]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+i+"="+flashvarsObj[i];}
else{par.flashvars=i+"="+flashvarsObj[i];}}}}
addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true);}});}
else if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj);});}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]};},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom&&isDomLoaded){return createSWF(attObj,parObj,replaceElemIdStr);}
else{return undefined;}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl);}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return q;}
if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return pairs[i].substring((pairs[i].indexOf("=")+1));}}}
return"";},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block";}}
storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false;}}}};}();(function($){$.fn.extend({ptMenu:function(arg){var defaltOption={vertical:false,menuItemSelector:'li',menuGroupSelector:'ul',firstClass:'potato-menu',menuItemClass:'potato-menu-item',menuGroupClass:'potato-menu-group',verticalClass:'potato-menu-vertical',holizontalClass:'potato-menu-holizontal',hasVerticalClass:'potato-menu-has-vertical',hasHolizontalClass:'potato-menu-has-holizontal',showDuration:450,hideDuration:50}
var option=(typeof(arg)!='string')?$.extend(defaltOption,arg):$.extend(defaltOption,{});var $menu=$(this).addClass(option.firstClass).addClass((option.vertical)?option.verticalClass:option.holizontalClass);var $menuItems=$menu.find(option.menuItemSelector).addClass(option.menuItemClass);var $menuGroups=$menu.find(option.menuGroupSelector).addClass(option.menuGroupClass);$menuGroups.parent().each(function(index){var bottom=$(this).parent(option.menuGroupSelector+'.'+option.firstClass).length==1&&!option.vertical;var $menuGroup=$(this).addClass((bottom)?option.hasVerticalClass:option.hasHolizontalClass).children(option.menuGroupSelector+':first').addClass(option.verticalClass)
$(this).hover(function(e){var offset=(bottom)?{left:'',top:''}:{left:$(this).width()-3+'px',top:'-5px'};$menuGroup.css({left:offset.left,top:offset.top}).fadeIn(option.showDuration);},function(e){$menuGroup.fadeOut(option.hideDuration);});});$menu.find('a[href^="#"]').click(function(){$menuGroups.fadeOut(option.hideDuration);return($(this).attr('href')=='#')?false:true;});return this;}})})(jQuery);$(document).ready(function(){$(".dropdown img.flag").addClass("flagvisibility");$("#links dt a").click(function(){$("#links dd ul").toggle();});$("#categories dt a").click(function(){$("#categories dd ul").toggle();});$(".dropdown dd ul li a").click(function(){var text=$(this).html();alert(text);$(".dropdown dt a span").html(text);$(".dropdown dd ul").hide();$("#result").html("Selected value is: "+getSelectedValue("sample"));});function getSelectedValue(id){return $("#"+id).find("dt a span.value").html();}
$(document).bind('click',function(e){var $clicked=$(e.target);if(!$clicked.parents().hasClass("dropdown"))
$(".dropdown dd ul").hide();});$("#flagSwitcher").click(function(){$(".dropdown img.flag").toggleClass("flagvisibility");});})
$(document).ready(function(){$("#slider").easySlider({auto:true,continuous:true});$(".resultinfo img").tooltip({tip:'#tooltip',relative:true,effect:'fade',delay:0,opacity:.96,offset:[-10,0],onBeforeShow:function(event)
{var tid="#t"+this.getTrigger()[0].id;var tc=$(tid).html();$('#tooltip').html(tc);},}).dynamic({bottom:{direction:'down',bounce:true}});$.gsuggest({'url':'/cfc/api.cfc'});try
{$('#slideshow').after('<div id="slidenav" class="nav">Go to page:</div>').cycle({fx:'fade',speed:'slow',timeout:6000,pager:'#slidenav',pause:1});}
catch(e){x=1}
$('#menu1').ptMenu();})
