(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery)
var jsAnimManagers = new Array(); var jsAnimManagerId = 0; function jsAnimManager(timestep) { jsAnimManagers[jsAnimManagerId] = this; this.myId = jsAnimManagerId; jsAnimManagerId++; if(timestep)
this.timestep = timestep; else
this.timestep = 40; this.paused = false; this.animObjects = new Array(); this.index = 0; this.step = function() { if(!this.paused) { for(x in this.animObjects) { this.animObjects[x].step();}
setTimeout("jsAnimManagers["+this.myId+"].step()",this.timestep);}
}; this.kill = function(id) { delete this.animObjects[id];}; this.createAnimObject = function(objId) { var el = document.getElementById(objId); var id = this.index; this.animObjects[id] = new jsAnimObject(el, id, this); this.index++; return this.animObjects[id];}; this.pause = function() { this.paused = true;}; this.resume = function() { this.paused = false; this.step();}; this.registerPosition = function(objId, fixed) { var el = document.getElementById(objId); var width = el.offsetWidth; var height = el.offsetHeight; if(fixed)
el.style.position = "fixed"; else
el.style.position = "absolute"; el.style.top = "0px"; el.style.left = "50%"; el.halfWidth = Math.floor(width/2); el.halfHeight = Math.floor(height/2); el.style.marginLeft = (-el.halfWidth)+"px"; el.style.marginTop = (-el.halfHeight)+"px"; el.positionRegistered = true; el.setPosition = function(x, y) { this.style.marginLeft = (x - this.halfWidth)+"px"; this.style.marginTop = (y - this.halfHeight)+"px";};}; this.step(); return true;}
function jsAnimObject(obj, id, manager) { this.id = id; this.obj = obj; this.paused = false; this.animEntries = new Array(); this.animLoops = new Array(); this.current = 0; this.manager = manager; this.step = function() { if(!this.paused) { for(x in this.animEntries) { var finished = this.animEntries[x].step(); if(finished) { this.animLoops[x]--; this.animEntries[x].current = 0; this.animEntries[x].onLoop();}
if(this.animLoops[x] == 0) { this.animEntries[x].onComplete(); delete this.animEntries[x];}
break;}
}
}; this.add = function(params) { var property = params.property; var from = params.from
var to = params.to; var duration = params.duration; if(params.ease)
var ease = params.ease; else
var ease = jsAnimEase.linear; if(params.loop)
var loop = params.loop; else
var loop = 1; if(params.onLoop)
var onLoop = params.onLoop; else
var onLoop = function() {}; if(params.onComplete)
var onComplete = params.onComplete; else
var onComplete = function() {}; this.animEntries[this.current] = new jsAnimEntry(this.obj, property, from, to, duration, this.manager.timestep, ease, onLoop, onComplete); this.animLoops[this.current] = loop; this.current++;}; this.skip = function() { for(x in this.animEntries) { delete this.animEntries[x]; break;}
}; this.pause = function() { this.paused = true;}; this.resume = function() { this.paused = false;}; this.kill = function() { this.manager.kill(this.id);}; return true;}
function Pos(x, y) { this.x = x; this.y = y; return true;}
function Dim(w, h) { this.w = w; this.h = h; return true;}
function Col(r, g, b) { this.r = r; this.g = g; this.b = b; return true;}
function jsAnimEntry(obj, property, from, to, duration, timestep, ease, onLoop, onComplete) { this.obj = obj; this.property = property; this.from = from; this.to = to; this.duration = duration; this.timestep = timestep; this.ease = ease; this.current = 0; this.onLoop = onLoop; this.onComplete = onComplete; this.step = function() { if(!this.from)
this.from = this.property.current(this.obj); if(this.current >= this.duration) { var p = this.ease.transform(1); this.property.update(this.obj, this.from, this.to, p); return true;}
else { var t = this.current / this.duration; var p = this.ease.transform(t); this.property.update(this.obj, this.from, this.to, p); this.current += this.timestep; return false;}
}; return true;}
var jsAnimEase = { linear : { transform : function(t) { return t;}
}, parabolicPos : { transform : function(t) { return t * t;}
}, parabolicNeg : { transform : function(t) { return 1 - (t-1) * (t-1);}
}, backout : function(g) { return { transform : function(t) { return (-1 * t * (t + g - 2)) / (1 - g);}
};}, backin : function(g) { return { transform : function(t) { return 1 + ((t+1-g) * ((t+1-g) + g - 2)) / (1 - g);}
};}, bounceLinear : { transform : function(t) { if(t < 0.5)
return 2 * t; else
return 1 - 2 * (t - 0.5)
}
}, bounceParabolic : { transform : function(t) { return -4 * t * (t-1);}
}, bounceSmooth : { transform : function(t) { return 0.5 - 0.5 * Math.cos(2 * Math.PI * t);}
}
}
var jsAnimUtil = { interp : function (v1, v2, percent) { if(isNaN(v1))
v1 = 0; if(isNaN(v2))
v2 = 0; var v = v1 + percent * (v2-v1); return Math.floor(v);}, getCSS : function (elem, field) { var css = document.defaultView && document.defaultView.getComputedStyle ?
document.defaultView.getComputedStyle(elem, null)
: elem.currentStyle || elem.style; return css[field];}, explode : function ( delimiter, string, limit ) { var emptyArray = { 0: '' }; if ( arguments.length < 2 || typeof arguments[0] == 'undefined' || typeof arguments[1] == 'undefined' )
{ return null;}
if ( delimiter === '' || delimiter === false || delimiter === null )
{ return false;}
if ( typeof delimiter == 'function' || typeof delimiter == 'object' || typeof string == 'function' || typeof string == 'object' )
{ return emptyArray;}
if ( delimiter === true ) { delimiter = '1';}
if (!limit) { return string.toString().split(delimiter.toString());} else { var splitted = string.toString().split(delimiter.toString()); var partA = splitted.splice(0, limit - 1); var partB = splitted.join(delimiter.toString()); partA.push(partB); return partA;}
}
}
var Prop = { wait : { update : function(obj, from, to, percent) {}, current : function(obj) {return 0;}
}, position : { update : function(obj, from, to, percent) { var x = jsAnimUtil.interp(from.x, to.x, percent); var y = jsAnimUtil.interp(from.y, to.y, percent); obj.setPosition(x, y);}, current : function(obj) { var left = parseInt(obj.style.marginLeft); var top = parseInt(obj.style.marginTop); var x = left + obj.halfWidth; var y = top + obj.halfHeight; return new Pos(x,y);}
}, positionSemicircle : function(clockwise) { return { update : function(obj, from, to, percent) { var centerX = (from.x + to.x) / 2; var centerY = (from.y + to.y) / 2; var h = centerY - from.y; var w = from.x - centerX; var dist = Math.sqrt(h * h + w * w); if(w == 0) { if(h > 0)
var initAngle = - Math.PI / 2; else
var initAngle = Math.PI / 2;}
else { var atan = Math.atan(h / Math.abs(w)); if(w > 0)
var initAngle = atan; else { var initAngle = Math.PI - atan;}
}
if(clockwise)
var addAngle = - percent * Math.PI; else
var addAngle = percent * Math.PI; var angle = initAngle + addAngle; var x = Math.floor(centerX + dist * Math.cos(angle)); var y = Math.floor(centerY - dist * Math.sin(angle)); obj.setPosition(x, y);}, current : function(obj) { var left = parseInt(obj.style.marginLeft); var top = parseInt(obj.style.marginTop); var x = left + obj.halfWidth; var y = top + obj.halfHeight; return new Pos(x,y);}
}
}, positionCircle : function(clockwise) { return { update : function(obj, from, to, percent) { var centerX = (from.x + to.x) / 2; var centerY = (from.y + to.y) / 2; var h = centerY - from.y; var w = from.x - centerX; var dist = Math.sqrt(h * h + w * w); if(w == 0) { if(h > 0)
var initAngle = - Math.PI / 2; else
var initAngle = Math.PI / 2;}
else { var atan = Math.atan(h / Math.abs(w)); if(w > 0)
var initAngle = atan; else { var initAngle = Math.PI - atan;}
}
if(clockwise)
var addAngle = 2 * percent * Math.PI; else
var addAngle = -2 * percent * Math.PI; var angle = initAngle + addAngle; var x = Math.floor(centerX + dist * Math.cos(angle)); var y = Math.floor(centerY + dist * Math.sin(angle)); obj.setPosition(x, y);}, current : function(obj) { var left = parseInt(obj.style.marginLeft); var top = parseInt(obj.style.marginTop); var x = left + obj.halfWidth; var y = top + obj.halfHeight; return new Pos(x,y);}
}
}, top : { update : function(obj, from, to, percent) { obj.style.top = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'top'));}
}, right : { update : function(obj, from, to, percent) { obj.style.right = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'right'));}
}, bottom : { update : function(obj, from, to, percent) { obj.style.bottom = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'bottom'));}
}, left : { update : function(obj, from, to, percent) { obj.style.left = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'left'));}
}, margin : { update : function(obj, from, to, percent) { obj.style.margin = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'margin'));}
}, marginTop : { update : function(obj, from, to, percent) { obj.style.marginTop = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'marginTop'));}
}, marginRight : { update : function(obj, from, to, percent) { obj.style.marginRight = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'marginRight'));}
}, marginBottom : { update : function(obj, from, to, percent) { obj.style.marginBottom = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'marginBottom'));}
}, marginLeft : { update : function(obj, from, to, percent) { obj.style.marginLeft = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'marginLeft'));}
}, padding : { update : function(obj, from, to, percent) { obj.style.padding = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'padding'));}
}, paddingTop : { update : function(obj, from, to, percent) { obj.style.paddingTop = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'paddingTop'));}
}, paddingRight : { update : function(obj, from, to, percent) { obj.style.paddingRight = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'paddingRight'));}
}, paddingBottom : { update : function(obj, from, to, percent) { obj.style.paddingBottom = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'paddingBottom'));}
}, paddingLeft : { update : function(obj, from, to, percent) { obj.style.paddingLeft = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'paddingLeft'));}
}, borderWidth : { update : function(obj, from, to, percent) { obj.style.borderWidth = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'borderWidth'));}
}, borderTopWidth : { update : function(obj, from, to, percent) { obj.style.borderTopWidth = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'borderTopWidth'));}
}, borderRightWidth : { update : function(obj, from, to, percent) { obj.style.borderRightWidth = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'borderRightWidth'));}
}, borderBottomWidth : { update : function(obj, from, to, percent) { obj.style.borderBottomWidth = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'borderBottomWidth'));}
}, borderLeftWidth : { update : function(obj, from, to, percent) { obj.style.borderLeftWidth = jsAnimUtil.interp(from, to, percent) + "px";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'borderLeftWidth'));}
}, fontSize : { update : function(obj, from, to, percent) { obj.style.fontSize = jsAnimUtil.interp(from, to, percent) + "pt";}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'fontSize'));}
}, height : { update : function(obj, from, to, percent) { var v = jsAnimUtil.interp(from, to, percent); obj.style.height = v + "px"; if(obj.positionRegistered) { var y = parseInt(obj.style.marginTop) + obj.halfHeight; obj.halfHeight = Math.floor(obj.offsetHeight/2); obj.style.marginTop = y - obj.halfHeight + "px";}
}, current : function(obj) { var ht = jsAnimUtil.getCSS(obj, 'height'); if(ht == "auto")
return obj.offsetHeight; else
return parseInt(ht);}
}, width : { update : function(obj, from, to, percent) { var v = jsAnimUtil.interp(from, to, percent); obj.style.width = v + "px"; if(obj.positionRegistered) { var x = parseInt(obj.style.marginLeft) + obj.halfWidth; obj.halfWidth = Math.floor(obj.offsetWidth/2); obj.style.marginLeft = x - obj.halfWidth + "px";}
}, current : function(obj) { return parseInt(jsAnimUtil.getCSS(obj, 'width'));}
}, dimension : { update : function(obj, from, to, percent) { var h = jsAnimUtil.interp(from.h, to.h, percent); var w = jsAnimUtil.interp(from.w, to.w, percent); obj.style.height = h + "px"; obj.style.width = w + "px"; if(obj.positionRegistered) { var y = parseInt(obj.style.marginTop) + obj.halfHeight; obj.halfHeight = Math.floor(obj.offsetHeight/2); obj.style.marginTop = (y - obj.halfHeight) + "px"; var x = parseInt(obj.style.marginLeft) + obj.halfWidth; obj.halfWidth = Math.floor(obj.offsetWidth/2); obj.style.marginLeft = (x - obj.halfWidth) + "px";}
}, current : function(obj) { var ht = jsAnimUtil.getCSS(obj, 'height'); if(ht == "auto")
var h = obj.offsetHeight; else
var h = parseInt(ht); var w = parseInt(jsAnimUtil.getCSS(obj, 'width')); return new Dim(w, h);}
}, color : { update : function(obj, from, to, percent) { r = jsAnimUtil.interp(from.r, to.r, percent); g = jsAnimUtil.interp(from.g, to.g, percent); b = jsAnimUtil.interp(from.b, to.b, percent); obj.style.color = "rgb("+r+","+g+","+b+")";}, current : function(obj) { var color = jsAnimUtil.getCSS(obj, 'color'); color = color.substring(4,color.length-1); var rgb = jsAnimUtil.explode(",",color); return new Col(parseInt(rgb[0]), parseInt(rgb[1]), parseInt(rgb[2]));}
}, backgroundColor : { update : function(obj, from, to, percent) { r = jsAnimUtil.interp(from.r, to.r, percent); g = jsAnimUtil.interp(from.g, to.g, percent); b = jsAnimUtil.interp(from.b, to.b, percent); obj.style.backgroundColor = "rgb("+r+","+g+","+b+")";}, current : function(obj) { var color = jsAnimUtil.getCSS(obj, 'backgroundColor'); color = color.substring(4,color.length-1); var rgb = jsAnimUtil.explode(",",color); return new Col(parseInt(rgb[0]), parseInt(rgb[1]), parseInt(rgb[2]));}
}, borderColor : { update : function(obj, from, to, percent) { r = jsAnimUtil.interp(from.r, to.r, percent); g = jsAnimUtil.interp(from.g, to.g, percent); b = jsAnimUtil.interp(from.b, to.b, percent); obj.style.borderColor = "rgb("+r+","+g+","+b+")";}, current : function(obj) { var color = jsAnimUtil.getCSS(obj, 'borderColor'); color = color.substring(4,color.length-1); var rgb = jsAnimUtil.explode(",",color); return new Col(parseInt(rgb[0]), parseInt(rgb[1]), parseInt(rgb[2]));}
}, opacity : { update : function(obj, from, to, percent) { v = jsAnimUtil.interp(100*from, 100*to, percent); obj.style.opacity = v / 100;}, current : function(obj) { return jsAnimUtil.getCSS(obj, 'opacity');}
}
}
function init() { var manager = new jsAnimManager(); shroom = document.getElementById("animatecrescent1"); manager.registerPosition("animatecrescent1"); shroom.setPosition(-1250,25); shroom = document.getElementById("animatek"); manager.registerPosition("animatek"); shroom.setPosition(-1250,25); shroom = document.getElementById("animatej"); manager.registerPosition("animatej"); shroom.setPosition(-1250,25); shroom = document.getElementById("animatel"); manager.registerPosition("animatel"); shroom.setPosition(-1250,25); shroom = document.getElementById("animatecrescent2"); manager.registerPosition("animatecrescent2"); shroom.setPosition(-1250,25); shroom = document.getElementById("animatesolicitors"); manager.registerPosition("animatesolicitors"); shroom.setPosition(-1250,120); shroom = document.getElementById("animatephonenumber"); manager.registerPosition("animatephonenumber"); shroom.setPosition(-1250,120); var anim = manager.createAnimObject("animatecrescent1"); anim.add({property: Prop.positionSemicircle(false), to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatek"); anim.add({property: Prop.positionSemicircle(false), to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatej"); anim.add({property: Prop.positionSemicircle(false), to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatel"); anim.add({property: Prop.positionSemicircle(false), to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatecrescent2"); anim.add({property: Prop.positionSemicircle(false), to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatesolicitors"); anim.add({property: Prop.position, to: new Pos(0,120), duration: 350, onComplete: function() { var anim = manager.createAnimObject("animatephonenumber"); anim.add({property: Prop.position, to: new Pos(0,120), duration: 350});}});}});}});}});}});}});}; if (document.images)
{ disputeresbg = new Image(); disputeresbg.src = "/themes/KJL/images/disputeresbg.jpg"; commercialdisputebg = new Image(); commercialdisputebg.src = "/themes/KJL/images/commercialdisputebg.jpg"; civildisputebg = new Image(); civildisputebg.src = "/themes/KJL/images/civildisputebg.jpg"; propertylawbg = new Image(); propertylawbg.src = "/themes/KJL/images/propertylawbg.jpg"; companylawbg = new Image(); companylawbg.src = "/themes/KJL/images/companylawbg.jpg"; employmentlawbg = new Image(); employmentlawbg.src = "/themes/KJL/images/employmentlawbg.jpg"; employerlawbg = new Image(); employerlawbg.src = "/themes/KJL/images/employerlawbg.jpg"; employeelawbg = new Image(); employeelawbg.src = "/themes/KJL/images/employeelawbg.jpg"; consultancybg = new Image(); consultancybg.src = "/themes/KJL/images/consultancybg.jpg";}
