;;(function($){$.fn.lightbox_me=function(options){return this.each(function(){var
opts=$.extend({},$.fn.lightbox_me.defaults,options),$overlay=$('div.'+opts.classPrefix+'_overlay'),$self=$(this),$iframe=$('iframe#lb_iframe'),ie6=($.browser.msie&&$.browser.version<7);if($overlay.length>0){$overlay[0].removeModal();}else{$overlay=$('<div class="'+opts.classPrefix+'_overlay" style="display:none;"/>');}
$iframe=($iframe.length>0)?$iframe:$iframe=$('<iframe id="lb_iframe" style="z-index: '+(opts.zIndex+1)+'; display: none; border: none; margin: 0; padding: 0; position: absolute; width: 100%; height: 100%; top: 0; left: 0;"/>');if(ie6){var src=/^https/i.test(window.location.href||'')?'javascript:false':'about:blank';$iframe.attr('src',src);$('body').append($iframe);}
$('body').append($self).append($overlay);setSelfPosition();$self.css({left:'50%',marginLeft:($self.outerWidth()/2)*-1,zIndex:(opts.zIndex+3)});setOverlayHeight();$overlay.css({position:'absolute',width:'100%',top:0,left:0,right:0,bottom:0,zIndex:(opts.zIndex+2)}).css(opts.overlayCSS);if($overlay.is(":hidden")){$overlay.fadeIn(opts.overlaySpeed,function(){$self[opts.appearEffect](opts.lightboxSpeed,function(){setOverlayHeight();opts.onLoad()});});}else{$self[opts.appearEffect](opts.lightboxSpeed,function(){setOverlayHeight();opts.onLoad()});}
$(window).resize(setOverlayHeight).resize(setSelfPosition).scroll(setSelfPosition).keydown(observeEscapePress);$self.click(function(){removeModal(true);return false;});$overlay.click(function(){if(opts.closeClick){removeModal(true);return false;}});$self.bind('close',function(){removeModal(true)});$self.bind('resize',setSelfPosition);$overlay[0].removeModal=removeModal;function removeModal(removeO){$self[opts.disappearEffect](opts.lightboxDisappearSpeed,function(){if(removeO){removeOverlay();}
opts.destroyOnClose?$self.remove():$self.hide()
$self.find(opts.closeSelector).unbind('click');$self.unbind('close');$self.unbind('resize');$(window).unbind('scroll',setSelfPosition);$(window).unbind('resize',setSelfPosition);});}
function removeOverlay(){$overlay.fadeOut(opts.overlayDisappearSpeed,function(){$(window).unbind('resize',setOverlayHeight);$overlay.remove();$overlay.unbind('click');opts.onClose();})}
function observeEscapePress(e){if((e.keyCode==27||(e.DOM_VK_ESCAPE==27&&e.which==0))&&opts.closeEsc)removeModal(true);}
function setOverlayHeight(){if($(window).height()<$(document).height()){$overlay.css({height:$(document).height()+'px'});}else{$overlay.css({height:'100%'});if(ie6){$('html,body').css('height','100%');}}}
function setSelfPosition(){var s=$self[0].style;if(($self.height()+80>=$(window).height())&&($self.css('position')!='absolute'||ie6)){var topOffset=$(document).scrollTop()+40;$self.css({position:'absolute',top:topOffset+'px',marginTop:0})
if(ie6){s.removeExpression('top');}}else if($self.height()+80<$(window).height()){if(ie6){s.position='absolute';if(opts.centered){s.setExpression('top','(document.documentElement.clientHeight || document.body.clientHeight) / 2 - (this.offsetHeight / 2) + (blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + "px"')
s.marginTop=0;}else{var top=(opts.modalCSS&&opts.modalCSS.top)?parseInt(opts.modalCSS.top):0;s.setExpression('top','((blah = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop) + '+top+') + "px"')}}else{if(opts.centered){$self.css({position:'fixed',top:'50%',marginTop:($self.outerHeight()/2)*-1})}else{$self.css({position:'fixed'}).css(opts.modalCSS);}}}}});};$.fn.lightbox_me.defaults={appearEffect:"fadeIn",overlaySpeed:300,lightboxSpeed:"fast",disappearEffect:"fadeOut",overlayDisappearSpeed:300,lightboxDisappearSpeed:"fast",closeSelector:".close",closeClick:true,closeEsc:true,destroyOnClose:false,onLoad:function(){},onClose:function(){},classPrefix:'lb',zIndex:999,centered:false,modalCSS:{top:'40px'},overlayCSS:{background:'black',opacity:.6}}})(jQuery);;;(function($)
{var counter=0;$.fn.comments=function(blnDeep)
{var blnDeep=(blnDeep||false);var jComments=$([]);this.each(function(intI,objNode)
{var objChildNode=objNode.firstChild;var strParentID=$(this).attr("id");while(objChildNode){if(objChildNode.nodeType===8){var split=objChildNode.nodeValue.split("\n");var type=split.shift();if(type.indexOf("/")!=-1){var comment=split.join("\n");if(strParentID==""){strParentID="commented-parent-"+counter++;}
jComments=jComments.add("<div rel='"+strParentID+"'>"+comment+"</div>");}}else if(blnDeep&&(objChildNode.nodeType===1)){jComments=jComments.add($(objChildNode).comments(true));}
objChildNode=objChildNode.nextSibling;}});return(jComments);}})(jQuery);;;(function(){var startTag=/^<(\w+)((?:\s+\w+(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,endTag=/^<\/(\w+)[^>]*>/,attr=/(\w+)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;var empty=makeMap("area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed");var block=makeMap("address,applet,blockquote,button,center,dd,del,dir,div,dl,dt,fieldset,form,frameset,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,p,pre,script,table,tbody,td,tfoot,th,thead,tr,ul");var inline=makeMap("a,abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var");var closeSelf=makeMap("colgroup,dd,dt,options,p,td,tfoot,th,thead,tr");var fillAttrs=makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected");var special=makeMap("script,style");var HTMLParser=this.HTMLParser=function(html,handler){var index,chars,match,stack=[],last=html;stack.last=function(){return this[this.length-1];};while(html){chars=true;if(!stack.last()||!special[stack.last()]){if(html.indexOf("<!--")==0){index=html.indexOf("-->");if(index>=0){if(handler.comment)
handler.comment(html.substring(4,index));html=html.substring(index+3);chars=false;}}else if(html.indexOf("</")==0){match=html.match(endTag);if(match){html=html.substring(match[0].length);match[0].replace(endTag,parseEndTag);chars=false;}}else if(html.indexOf("<")==0){match=html.match(startTag);if(match){html=html.substring(match[0].length);match[0].replace(startTag,parseStartTag);chars=false;}}
if(chars){index=html.indexOf("<");var text=index<0?html:html.substring(0,index);html=index<0?"":html.substring(index);if(handler.chars)
handler.chars(text);}}else{html=html.replace(new RegExp("(.*)<\/"+stack.last()+"[^>]*>"),function(all,text){text=text.replace(/<!--(.*?)-->/g,"$1").replace(/<!\[CDATA\[(.*?)]]>/g,"$1");if(handler.chars)
handler.chars(text);return"";});parseEndTag("",stack.last());}
if(html==last)
throw"Parse Error: "+html;last=html;}
parseEndTag();function parseStartTag(tag,tagName,rest,unary){if(block[tagName]){while(stack.last()&&inline[stack.last()]){parseEndTag("",stack.last());}}
if(closeSelf[tagName]&&stack.last()==tagName){parseEndTag("",tagName);}
unary=empty[tagName]||!!unary;if(!unary)
stack.push(tagName);if(handler.start){var attrs=[];rest.replace(attr,function(match,name){var value=arguments[2]?arguments[2]:arguments[3]?arguments[3]:arguments[4]?arguments[4]:fillAttrs[name]?name:"";attrs.push({name:name,value:value,escaped:value.replace(/(^|[^\\])"/g,'$1\\\"')});});if(handler.start)
handler.start(tagName,attrs,unary);}}
function parseEndTag(tag,tagName){if(!tagName)
var pos=0;else
for(var pos=stack.length-1;pos>=0;pos--)
if(stack[pos]==tagName)
break;if(pos>=0){for(var i=stack.length-1;i>=pos;i--)
if(handler.end)
handler.end(stack[i]);stack.length=pos;}}};this.HTMLtoXML=function(html){var results="";HTMLParser(html,{start:function(tag,attrs,unary){results+="<"+tag;for(var i=0;i<attrs.length;i++)
results+=" "+attrs[i].name+'="'+attrs[i].escaped+'"';results+=(unary?"/":"")+">";},end:function(tag){results+="</"+tag+">";},chars:function(text){results+=text;},comment:function(text){results+="<!--"+text+"-->";}});return results;};this.HTMLtoDOM=function(html,doc){var one=makeMap("html,head,body,title");var structure={link:"head",base:"head"};if(!doc){if(typeof DOMDocument!="undefined")
doc=new DOMDocument();else if(typeof document!="undefined"&&document.implementation&&document.implementation.createDocument)
doc=document.implementation.createDocument("","",null);else if(typeof ActiveX!="undefined")
doc=new ActiveXObject("Msxml.DOMDocument");}else
doc=doc.ownerDocument||doc.getOwnerDocument&&doc.getOwnerDocument()||doc;var elems=[],documentElement=doc.documentElement||doc.getDocumentElement&&doc.getDocumentElement();if(!documentElement&&doc.createElement)(function(){var html=doc.createElement("html");var head=doc.createElement("head");head.appendChild(doc.createElement("title"));html.appendChild(head);html.appendChild(doc.createElement("body"));doc.appendChild(html);})();if(doc.getElementsByTagName)
for(var i in one)
one[i]=doc.getElementsByTagName(i)[0];var curParentNode=one.body;HTMLParser(html,{start:function(tagName,attrs,unary){if(one[tagName]){curParentNode=one[tagName];return;}
var elem=doc.createElement(tagName);for(var attr in attrs)
elem.setAttribute(attrs[attr].name,attrs[attr].value);if(structure[tagName]&&typeof one[structure[tagName]]!="boolean")
one[structure[tagName]].appendChild(elem);else if(curParentNode&&curParentNode.appendChild)
curParentNode.appendChild(elem);if(!unary){elems.push(elem);curParentNode=elem;}},end:function(tag){elems.length-=1;curParentNode=elems[elems.length-1];},chars:function(text){curParentNode.appendChild(doc.createTextNode(text));},comment:function(text){}});return doc;};function makeMap(str){var obj={},items=str.split(",");for(var i=0;i<items.length;i++)
obj[items[i]]=true;return obj;}})();;;(function($)
{$.fn.extend({xml:function(settings)
{settings=$.extend({},settings);var html=this.html();var xml="";var li;var ul=new Array();HTMLParser(html,{start:function(tag,attrs,unary){tag=tag.toLowerCase();if(tag=="ul"){ul.push({count:0})
li=ul[ul.length-1];}
if(tag=="li"){if(li.count==1){xml+="</li>"
li.count--;}
li.count++;}
xml+="<"+tag;for(var i=0;i<attrs.length;i++){xml+=" "+attrs[i].name+'="'+attrs[i].escaped+'"';}
xml+=(unary?"/":"")+">";},end:function(tag){tag=tag.toLowerCase();if(tag=="ul"){ul.pop();li=ul[ul.length-1];xml+="</li></"+tag+">";}else if(tag!="li"){xml+="</"+tag+">";}},chars:function(text){xml+=$.trim(text);},comment:function(text){xml+="<!--"+text+"-->";}});return xml;}});})(jQuery);;(function($)
{$(function()
{$(".map-link").bind("click",function(e)
{e.preventDefault();var id=$(this).attr("href");$(id).lightbox_me({});});$("#page-index #banner").each(function()
{var $this=$(this);if(location.href.indexOf("html")==-1){var params={loop:"false",menu:"false",quality:"best",scale:"noscale",salign:"tl",bgcolor:"#FFFFFF"};var attributes={};$this.find("#theme-list>ul>li").each(function(i)
{var $this=$(this);var comment=$this.comments(true)[0];var $ul=$("ul",comment);$this.append($ul);});var flashvars={internal:(location.href.indexOf("internal")!=-1),xml:"%3Cdiv%20id%3D%22swf%22%20style%3D%22background-color%3A%20transparent%3Bheight%3A%20auto%3Bmargin-top%3A%200px%3Bbackground-image%3A%20url%28/uploads/banners/home/welcome.jpg%29%3B%22%3E%3Cdiv%20class%3D%22header%22%3E%3Ch2%3EWe%20know%20about...%3C/h2%3E%3C/div%3E%3Cdiv%20class%3D%22body%22%3E%3Cdiv%20class%3D%22nav%22%20id%3D%22theme-list%22%3E%3Cul%3E%3Cli%20class%3D%22first%22%3E%3Ca%20href%3D%22/economic-development/theme/%22%3E%3Cspan%20class%3D%22initials%22%3EEd%3C/span%3E%3Cspan%20class%3D%22title%22%3EEconomic%20development%3C/span%3E%3Cspan%20class%3D%22description%22%3EToday%2C%20perhaps%20more%20than%20ever%20before%2C%20there%20is%20a%20need%20for%20councils%20and%20their%20partners%20to%20focus%20on%20the%20future%20economic%20viability%20of%20local%20communities.%20We%20have%20experience%20of%20supporting%20economic%20development%20at%20a%20local%20level%20and%20across%20functional%20economic%20areas.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/economic-development/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/housing-and-regeneration/theme/%22%3E%3Cspan%20class%3D%22initials%22%3EHr%3C/span%3E%3Cspan%20class%3D%22title%22%3EHousing%20and%20regeneration%3C/span%3E%3Cspan%20class%3D%22description%22%3EA%20combination%20of%20the%20recession%20and%20its%20impact%20on%20public%20expenditure%20has%20major%20implications%20for%20housing%20and%20regeneration.%20Our%20unique%20understanding%20of%20evolving%20national%20policy%2C%20our%20hands%20on%20delivery%20and%20planning%20experience%20and%20our%20analytical%20skills%20can%20help%20clients%20in%20these%20challenging%20times.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/housing-and-regeneration/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/health-social-care-and-childrens-services/theme/%22%3E%3Cspan%20class%3D%22initials%22%3EHs%3C/span%3E%3Cspan%20class%3D%22title%22%3EHealth%2C%20social%20care%20and%20children%27s%20services%3C/span%3E%3Cspan%20class%3D%22description%22%3ECloser%20working%20between%20health%2C%20local%20government%20and%20other%20partners%20is%20being%20driven%20by%20policy%20and%20financial%20imperatives%20and%20a%20focus%20on%20putting%20greater%20control%20in%20the%20hands%20of%20service%20users.%20We%20work%20at%20the%20forefront%20of%20these%20developments.%20Our%20work%20on%26nbsp%3Bjoint%20needs%20assessments%2C%26nbsp%3Bhealth%20improvement%20and%26nbsp%3Btackling%26nbsp%3Bhealth%20inequalities%26nbsp%3Bhas%20broken%20new%20ground.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/health-social-care-and-children-services/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/libraries-and-cultural-services/theme/%22%3E%3Cspan%20class%3D%22initials%22%3ELc%3C/span%3E%3Cspan%20class%3D%22title%22%3ELibraries%20and%20cultural%20services%3C/span%3E%3Cspan%20class%3D%22description%22%3EPublic%20libraries%20are%20at%20the%20heart%20of%20the%20debate%20about%20the%20future%20shape%20of%20local%20government%20services%20and%20how%20councils%20should%20respond%20to%20significantly%20reduced%20public%20expenditure.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/06.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/05.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/libraries-and-cultural-services/06.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/local-governance-accountability-and-scrutiny/theme/%22%3E%3Cspan%20class%3D%22initials%22%3ELa%3C/span%3E%3Cspan%20class%3D%22title%22%3ELocal%20governance%2C%20accountability%20and%20scrutiny%3C/span%3E%3Cspan%20class%3D%22description%22%3ELocal%20councils%20face%20a%20major%20challenge%20making%20sense%20of%20the%20implications%20for%20them%20and%20the%20communities%20they%20serve%20of%20the%20Coalition%27s%20Programme%20for%20Government.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/local-governance-accountability-and-cultural-services/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/neighbourhoods-and-community-involvement/theme/%22%3E%3Cspan%20class%3D%22initials%22%3ENc%3C/span%3E%3Cspan%20class%3D%22title%22%3ENeighbourhoods%20and%20community%20involvement%3C/span%3E%3Cspan%20class%3D%22description%22%3EDevolution%20beyond%20town%20and%20county%20halls%20to%20communities%20and%20neighbourhoods%20is%20a%20core%20strand%20of%20the%20Coalition%27s%20programme%20for%20government.%20We%20contribute%20to%20national%20policy%20making%20on%20this%20theme%20and%20support%20the%20local%20implementation%20of%20neighbourhood%20approaches.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/neighbourhoods-and-community-development/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%3E%3Ca%20href%3D%22/poverty-and-inequalities/theme/%22%3E%3Cspan%20class%3D%22initials%22%3EPi%3C/span%3E%3Cspan%20class%3D%22title%22%3EPoverty%20and%20inequalities%3C/span%3E%3Cspan%20class%3D%22description%22%3EAction%20to%20tackle%20poverty%20and%20reduce%20inequalities%20requires%20comprehensive%20data%20analysis%2C%20strategic%20thinking%2C%20detailed%20planning%20and%20a%20commitment%20to%20collaborative%20working.%20That%20is%20what%20we%20bring%20to%20our%20work%20with%20government%20departments%20and%20local%20organisations.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/poverty-and-inequalities/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3Cli%20class%3D%22last%22%3E%3Ca%20href%3D%22/skills-and-employment/theme/%22%3E%3Cspan%20class%3D%22initials%22%3ESe%3C/span%3E%3Cspan%20class%3D%22title%22%3ESkills%20and%20employment%3C/span%3E%3Cspan%20class%3D%22description%22%3EThe%20role%20of%20local%20bodies%20in%20tackling%20unemployment%20and%20worklessness%20is%20changing.%20There%20is%20potential%20for%20more%20devolution%20so%20action%20can%20be%20responsive%20to%20local%20needs%2C%20but%20the%20approach%20of%20the%20Coalition%20Government%20is%20still%20developing.%3C/span%3E%3C/a%3E%3C%21--text/html%0A%09%09%09%3Cul%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/01.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/02.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/03.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/04.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%09%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/05.jpg%22%20/%3E%3C/li%3E%0A%09%09%09%0A%09%09%09%3C/ul%3E%0A%09%09%09--%3E%3Cul%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/01.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/02.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/03.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/04.jpg%22/%3E%3C/li%3E%3Cli%3E%3Cimg%20src%3D%22/uploads/banners/home/skills-and-employment/05.jpg%22/%3E%3C/li%3E%3C/ul%3E%3C/li%3E%3C/ul%3E%3C/div%3E%3C/div%3E%3Cdiv%20class%3D%22footer%22%3E%3Cdiv%20class%3D%22nav%22%20id%3D%22section-menu%22%3E%3Cul%3E%3Cli%20class%3D%22we-can%20first%22%3E%3Ca%20href%3D%22/we-can/%22%3EWe%20can%3C/a%3E%3C/li%3E%3Cli%20class%3D%22we-understand%22%3E%3Ca%20href%3D%22/we-understand/%22%3EWe%20understand%3C/a%3E%3C/li%3E%3Cli%20class%3D%22last%20we-are%22%3E%3Ca%20href%3D%22/we-are/%22%3EWe%20are%3C/a%3E%3C/li%3E%3C/ul%3E%3C/div%3E%3C/div%3E%3C/div%3E"};$this.remove("ul");swfobject.embedSWF("/swf/home.swf","swf","100%","100%","9.0.0",null,flashvars,params,attributes);$(window).bind("resize",function()
{$this=$("#banner");$this.css({width:"100%"});var w=$(window).width();var h=Math.max(400,Math.round(w*0.336));$this.height(h);$(".container").css({marginTop:h+23});}).trigger("resize");}
$this.css({visibility:"visible"});});$("#theme-menu li a").bind({mouseenter:function(e)
{$(".title",this).fadeIn(600);},mouseleave:function(e)
{$(".title",this).css({display:"none"});}});$(".profile").bind({mouseenter:function(e)
{e.preventDefault();$(this).find(".body div").stop().animate({bottom:"0"},{duration:200});},mouseleave:function(e)
{e.preventDefault();$(this).find(".body div").stop().animate({bottom:"-95px"},{duration:200});}}).find("a.view-details").bind("click",function()
{$(this).parent().stop().animate({bottom:"-95px"},{duration:200});});});})(jQuery.noConflict());;
