;;;jQuery.ui||(function($){$.ui={version:"1.8",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b);},hasScroll:function(el,a){if($(el).css('overflow')=='hidden'){return false;}
var scroll=(a&&a=='left')?'scrollLeft':'scrollTop',has=false;if(el[scroll]>0){return true;}
el[scroll]=1;has=(el[scroll]>0);el[scroll]=0;return has;},isOverAxis:function(x,reference,size){return(x>reference)&&(x<(reference+size));},isOver:function(y,x,top,left,height,width){return $.ui.isOverAxis(y,top,height)&&$.ui.isOverAxis(x,left,width);},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};$.fn.extend({_focus:$.fn.focus,focus:function(delay,fn){return typeof delay==='number'?this.each(function(){var elem=this;setTimeout(function(){$(elem).focus();(fn&&fn.call(elem));},delay);}):this._focus.apply(this,arguments);},enableSelection:function(){return this.attr('unselectable','off').css('MozUserSelect','').unbind('selectstart.ui');},disableSelection:function(){return this.attr('unselectable','on').css('MozUserSelect','none').bind('selectstart.ui',function(){return false;});},scrollParent:function(){var scrollParent;if(($.browser.msie&&(/(static|relative)/).test(this.css('position')))||(/absolute/).test(this.css('position'))){scrollParent=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test($.curCSS(this,'position',1))&&(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}else{scrollParent=this.parents().filter(function(){return(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}
return(/fixed/).test(this.css('position'))||!scrollParent.length?$(document):scrollParent;},zIndex:function(zIndex){if(zIndex!==undefined){return this.css('zIndex',zIndex);}
if(this.length){var elem=$(this[0]),position,value;while(elem.length&&elem[0]!==document){position=elem.css('position');if(position=='absolute'||position=='relative'||position=='fixed')
{value=parseInt(elem.css('zIndex'));if(!isNaN(value)&&value!=0){return value;}}
elem=elem.parent();}}
return 0;}});$.extend($.expr[':'],{data:function(elem,i,match){return!!$.data(elem,match[3]);},focusable:function(element){var nodeName=element.nodeName.toLowerCase(),tabIndex=$.attr(element,'tabindex');return(/input|select|textarea|button|object/.test(nodeName)?!element.disabled:'a'==nodeName||'area'==nodeName?element.href||!isNaN(tabIndex):!isNaN(tabIndex))&&!$(element)['area'==nodeName?'parents':'closest'](':hidden').length;},tabbable:function(element){var tabIndex=$.attr(element,'tabindex');return(isNaN(tabIndex)||tabIndex>=0)&&$(element).is(':focusable');}});})(jQuery);;;(function($){var _remove=$.fn.remove;$.fn.remove=function(selector,keepData){return this.each(function(){if(!keepData){if(!selector||$.filter(selector,[this]).length){$("*",this).add(this).each(function(){$(this).triggerHandler("remove");});}}
return _remove.call($(this),selector,keepData);});};$.widget=function(name,base,prototype){var namespace=name.split(".")[0],fullName;name=name.split(".")[1];fullName=namespace+"-"+name;if(!prototype){prototype=base;base=$.Widget;}
$.expr[":"][fullName]=function(elem){return!!$.data(elem,name);};$[namespace]=$[namespace]||{};$[namespace][name]=function(options,element){if(arguments.length){this._createWidget(options,element);}};var basePrototype=new base();basePrototype.options=$.extend({},basePrototype.options);$[namespace][name].prototype=$.extend(true,basePrototype,{namespace:namespace,widgetName:name,widgetEventPrefix:$[namespace][name].prototype.widgetEventPrefix||name,widgetBaseClass:fullName},prototype);$.widget.bridge(name,$[namespace][name]);};$.widget.bridge=function(name,object){$.fn[name]=function(options){var isMethodCall=typeof options==="string",args=Array.prototype.slice.call(arguments,1),returnValue=this;options=!isMethodCall&&args.length?$.extend.apply(null,[true,options].concat(args)):options;if(isMethodCall&&options.substring(0,1)==="_"){return returnValue;}
if(isMethodCall){this.each(function(){var instance=$.data(this,name),methodValue=instance&&$.isFunction(instance[options])?instance[options].apply(instance,args):instance;if(methodValue!==instance&&methodValue!==undefined){returnValue=methodValue;return false;}});}else{this.each(function(){var instance=$.data(this,name);if(instance){if(options){instance.option(options);}
instance._init();}else{$.data(this,name,new object(options,this));}});}
return returnValue;};};$.Widget=function(options,element){if(arguments.length){this._createWidget(options,element);}};$.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(options,element){this.element=$(element).data(this.widgetName,this);this.options=$.extend(true,{},this.options,$.metadata&&$.metadata.get(element)[this.widgetName],options);var self=this;this.element.bind("remove."+this.widgetName,function(){self.destroy();});this._create();this._init();},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+
this.namespace+"-state-disabled");},widget:function(){return this.element;},option:function(key,value){var options=key,self=this;if(arguments.length===0){return $.extend({},self.options);}
if(typeof key==="string"){if(value===undefined){return this.options[key];}
options={};options[key]=value;}
$.each(options,function(key,value){self._setOption(key,value);});return self;},_setOption:function(key,value){this.options[key]=value;if(key==="disabled"){this.widget()
[value?"addClass":"removeClass"](this.widgetBaseClass+"-disabled"+" "+
this.namespace+"-state-disabled").attr("aria-disabled",value);}
return this;},enable:function(){return this._setOption("disabled",false);},disable:function(){return this._setOption("disabled",true);},_trigger:function(type,event,data){var callback=this.options[type];event=$.Event(event);event.type=(type===this.widgetEventPrefix?type:this.widgetEventPrefix+type).toLowerCase();data=data||{};if(event.originalEvent){for(var i=$.event.props.length,prop;i;){prop=$.event.props[--i];event[prop]=event.originalEvent[prop];}}
this.element.trigger(event,data);return!($.isFunction(callback)&&callback.call(this.element[0],event,data)===false||event.isDefaultPrevented());}};})(jQuery);;;(function($)
{var qn="code28.videoPanel";var eventQn="."+qn;$.widget(qn,{options:{showPortrait:1,showByline:1,showTitle:1,color:"#FFFFFF",width:620,height:350,params:{allowscriptaccess:'always',allowfullscreen:'true'},swf_id:"video-player"},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;var $video=$widget.find("#"+options.swf_id);var id=$video.attr("data-clip");options.flashvars={clip_id:id,show_portrait:options.showPortrait,show_byline:options.showByline,show_title:options.showTitle,js_api:1,js_swf_id:'moogaloop',color:options.color};var attributes={wmode:"opaque"};swfobject.embedSWF("http://vimeo.com/moogaloop.swf",options.swf_id,options.width,options.height,"9.0.0","expressInstall.swf",options.flashvars,options.params,{});if($.browser.msie==true&&$.browser.msie<8){return;}
$widget.find(".meta .details a").toggle(function()
{$widget.find(".description").slideDown();},function()
{$widget.find(".description").slideUp();});},setVideo:function(meta)
{var $widget=this.widget();var options=this.options;var $meta=$(".meta",$widget);$(".likes",$meta).html(meta.likes);$(".comments",$meta).html(meta.comments);$(".plays",$meta).html(meta.plays);$(".age",$meta).html(meta.age);$(".description",$widget).html(meta.description+"<hr />");$(".description p",$widget).addClass("grid_6 suffix_2 alpha");options.flashvars.clip_id=meta.clip;swfobject.embedSWF("http://vimeo.com/moogaloop.swf",options.swf_id,options.width,options.height,"9.0.0","expressInstall.swf",options.flashvars,options.params,{});}});})(jQuery);;;(function($)
{var qn="code28.videoList";var eventQn="."+qn;$.widget(qn,{options:{},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;$(".item",$widget).css({cursor:"pointer"}).bind("mouseenter"+eventQn,function()
{var $item=$(this);$item.addClass("mouseenter");}).bind("mouseleave"+eventQn,function()
{var $item=$(this);$item.removeClass("mouseenter");});if($("body").attr("id")=="page-collection"){$(".item",$widget).bind("click"+eventQn,function(e)
{e.preventDefault();var $item=$(this);var $a=$item.find(".header a");if($item.hasClass("selected")){return;}
var href=$a.attr("href").split("/");href.pop();options.panel.videoPanel("setVideo",{clip:href.pop(),likes:$(".meta li.likes",$item).html(),comments:$(".meta li.comments",$item).html(),plays:$(".meta li.plays",$item).html(),description:$(".description",$item).html(),age:$.trim($(".meta li.age",$item).text().split(":")[1])});$(".selected",$widget).removeClass("selected");$item.addClass("selected");})}}});})(jQuery);;;;(function($){var style=document.createElement('div').style;var moz=style['MozBorderRadius']!==undefined;var webkit=style['WebkitBorderRadius']!==undefined;var radius=style['borderRadius']!==undefined||style['BorderRadius']!==undefined;var mode=document.documentMode||0;var noBottomFold=$.browser.msie&&(($.browser.version<8&&!mode)||mode<8);var expr=$.browser.msie&&(function(){var div=document.createElement('div');try{div.style.setExpression('width','0+0');div.style.removeExpression('width');}
catch(e){return false;}
return true;})();function sz(el,p){return parseInt($.css(el,p))||0;};function hex2(s){var s=parseInt(s).toString(16);return(s.length<2)?'0'+s:s;};function gpc(node){while(node){var v=$.css(node,'backgroundColor');if(v&&v!='transparent'&&v!='rgba(0, 0, 0, 0)'){if(v.indexOf('rgb')>=0){var rgb=v.match(/\d+/g);return'#'+hex2(rgb[0])+hex2(rgb[1])+hex2(rgb[2]);}
return v;}
node=node.parentNode;}
return'#ffffff';};function getWidth(fx,i,width){switch(fx){case'round':return Math.round(width*(1-Math.cos(Math.asin(i/width))));case'cool':return Math.round(width*(1+Math.cos(Math.asin(i/width))));case'sharp':return Math.round(width*(1-Math.cos(Math.acos(i/width))));case'bite':return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));case'slide':return Math.round(width*(Math.atan2(i,width/i)));case'jut':return Math.round(width*(Math.atan2(width,(width-i-1))));case'curl':return Math.round(width*(Math.atan(i)));case'tear':return Math.round(width*(Math.cos(i)));case'wicked':return Math.round(width*(Math.tan(i)));case'long':return Math.round(width*(Math.sqrt(i)));case'sculpt':return Math.round(width*(Math.log((width-i-1),width)));case'dogfold':case'dog':return(i&1)?(i+1):width;case'dog2':return(i&2)?(i+1):width;case'dog3':return(i&3)?(i+1):width;case'fray':return(i%2)*width;case'notch':return width;case'bevelfold':case'bevel':return i+1;}};$.fn.corner=function(options){if(this.length==0){if(!$.isReady&&this.selector){var s=this.selector,c=this.context;$(function(){$(s,c).corner(options);});}
return this;}
return this.each(function(index){var $this=$(this);var o=[$this.attr($.fn.corner.defaults.metaAttr)||'',options||''].join(' ').toLowerCase();var keep=/keep/.test(o);var cc=((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);var sc=((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);var width=parseInt((o.match(/(\d+)px/)||[])[1])||10;var re=/round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog/;var fx=((o.match(re)||['round'])[0]);var fold=/dogfold|bevelfold/.test(o);var edges={T:0,B:1};var opts={TL:/top|tl|left/.test(o),TR:/top|tr|right/.test(o),BL:/bottom|bl|left/.test(o),BR:/bottom|br|right/.test(o)};if(!opts.TL&&!opts.TR&&!opts.BL&&!opts.BR)
opts={TL:1,TR:1,BL:1,BR:1};if($.fn.corner.defaults.useNative&&fx=='round'&&(radius||moz||webkit)&&!cc&&!sc){if(opts.TL)
$this.css(radius?'border-top-left-radius':moz?'-moz-border-radius-topleft':'-webkit-border-top-left-radius',width+'px');if(opts.TR)
$this.css(radius?'border-top-right-radius':moz?'-moz-border-radius-topright':'-webkit-border-top-right-radius',width+'px');if(opts.BL)
$this.css(radius?'border-bottom-left-radius':moz?'-moz-border-radius-bottomleft':'-webkit-border-bottom-left-radius',width+'px');if(opts.BR)
$this.css(radius?'border-bottom-right-radius':moz?'-moz-border-radius-bottomright':'-webkit-border-bottom-right-radius',width+'px');return;}
var strip=document.createElement('div');$(strip).css({overflow:'hidden',height:'1px',minHeight:'1px',fontSize:'1px',backgroundColor:sc||'transparent',borderStyle:'solid'});var pad={T:parseInt($.css(this,'paddingTop'))||0,R:parseInt($.css(this,'paddingRight'))||0,B:parseInt($.css(this,'paddingBottom'))||0,L:parseInt($.css(this,'paddingLeft'))||0};if(typeof this.style.zoom!=undefined)this.style.zoom=1;if(!keep)this.style.border='none';strip.style.borderColor=cc||gpc(this.parentNode);var cssHeight=$(this).outerHeight();for(var j in edges){var bot=edges[j];if((bot&&(opts.BL||opts.BR))||(!bot&&(opts.TL||opts.TR))){strip.style.borderStyle='none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');var d=document.createElement('div');$(d).addClass('jquery-corner');var ds=d.style;bot?this.appendChild(d):this.insertBefore(d,this.firstChild);if(bot&&cssHeight!='auto'){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.bottom=ds.left=ds.padding=ds.margin='0';if(expr)
ds.setExpression('width','this.parentNode.offsetWidth');else
ds.width='100%';}
else if(!bot&&$.browser.msie){if($.css(this,'position')=='static')
this.style.position='relative';ds.position='absolute';ds.top=ds.left=ds.right=ds.padding=ds.margin='0';if(expr){var bw=sz(this,'borderLeftWidth')+sz(this,'borderRightWidth');ds.setExpression('width','this.parentNode.offsetWidth - '+bw+'+ "px"');}
else
ds.width='100%';}
else{ds.position='relative';ds.margin=!bot?'-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px':(pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';}
for(var i=0;i<width;i++){var w=Math.max(0,getWidth(fx,i,width));var e=strip.cloneNode(false);e.style.borderWidth='0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';bot?d.appendChild(e):d.insertBefore(e,d.firstChild);}
if(fold&&$.support.boxModel){if(bot&&noBottomFold)continue;for(var c in opts){if(!opts[c])continue;if(bot&&(c=='TL'||c=='TR'))continue;if(!bot&&(c=='BL'||c=='BR'))continue;var common={position:'absolute',border:'none',margin:0,padding:0,overflow:'hidden',backgroundColor:strip.style.borderColor};var $horz=$('<div/>').css(common).css({width:width+'px',height:'1px'});switch(c){case'TL':$horz.css({bottom:0,left:0});break;case'TR':$horz.css({bottom:0,right:0});break;case'BL':$horz.css({top:0,left:0});break;case'BR':$horz.css({top:0,right:0});break;}
d.appendChild($horz[0]);var $vert=$('<div/>').css(common).css({top:0,bottom:0,width:'1px',height:width+'px'});switch(c){case'TL':$vert.css({left:width});break;case'TR':$vert.css({right:width});break;case'BL':$vert.css({left:width});break;case'BR':$vert.css({right:width});break;}
d.appendChild($vert[0]);}}}}});};$.fn.uncorner=function(){if(radius||moz||webkit)
this.css(radius?'border-radius':moz?'-moz-border-radius':'-webkit-border-radius',0);$('div.jquery-corner',this).remove();return this;};$.fn.corner.defaults={useNative:true,metaAttr:'data-corner'};})(jQuery);;;(function($)
{var qn="code28.fold";var eventQn="."+qn;$.widget(qn,{options:{corners:"bl"},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();$fold=$(".fold-corner",$widget);$fold.css({marginTop:"1px",visibility:"visible"}).corner("bevelfold "+this.options.corners+" "+parseInt($fold.css("width"))+"px").find("div").css({backgroundColor:$widget.css("backgroundColor")});if(this.options.corners=="br"){$fold.css({float:"right"});$widget.css({overflow:"hidden"});}}});})(jQuery);;;(function($)
{var qn="code28.educationList";var eventQn="."+qn;$.widget(qn,{options:{},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;$widget.find(".article").bind("mouseenter"+eventQn,function()
{var $item=$(this);$item.addClass("mouseentered");}).bind("mouseleave"+eventQn,function()
{var $item=$(this);$item.removeClass("mouseentered");});}});})(jQuery);;;(function($)
{var qn="code28.contactMap";var eventQn="."+qn;$.widget(qn,{options:{},_create:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;var $div=$widget.append($("<div />",{id:"google-map",css:{width:"620px",height:"330px"}})).find("div");var map=this.map=new google.maps.Map2($div.get(0));var ll=new google.maps.LatLng(51.5266,-0.0802)
map.setCenter(ll,16);var logo=$.extend(new google.maps.Icon(),{image:'/images/icons/onedotzero-marker.png',iconSize:new google.maps.Size(100,50),iconAnchor:new google.maps.Point(48,47),shadow:'/images/icons/marker-shadow.png',shadowSize:new google.maps.Size(130,50)});var marker=new google.maps.Marker(ll,{map:map,position:ll,title:"onedotzero",icon:logo});map.addOverlay(marker);var mapControl=new google.maps.LargeMapControl3D();map.addControl(mapControl);var typeControl=new google.maps.MapTypeControl();map.addControl(typeControl);}});})(jQuery);;;(function($)
{var name="slideshow";var qn="code28."+name;var eventQn="."+qn;var slideEvent="slide";$.event.special[name+slideEvent]={setup:function()
{},teardown:function()
{},_default:function(e)
{if(!e.isDefaultPrevented()){var $li=$("li",e.target).eq(0).css({zIndex:0,visibility:"hidden"}).detach();$("ul",e.target).append($li);var interval=$(e.target).slideshow("option","interval");setTimeout(function()
{$(e.target).slideshow("slide")},interval);}}};$.widget(qn,{options:{interval:10000},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;var $li=$("li",$widget).eq(0);$("li",$widget).css({visibility:"hidden"});$li.css({visibility:"visible"});var $ul=$("ul",$widget);$ul.css({position:"relative",overflow:"hidden"});$("li",$widget).css({position:"absolute"});var o=this;$li.find("img").bind("load",function()
{$ul.css({height:$li.height()});setTimeout($.proxy(o,"slide"),options.interval);});},slide:function()
{var $widget=this.widget();var options=this.options;var $li=$("li",$widget).eq(1);$li.css({zIndex:1,visibility:"visible"}).parent().css({height:$li.height()});$("li",$widget).eq(0).css({zIndex:1000});$widget.trigger("slideshowslide");}});})(jQuery);;;(function($)
{var qn="code28.flickr";var eventQn="."+qn;$.widget(qn,{options:{url:"http://api.flickr.com/services/feeds/photoset.gne?set=%s&nsid=49726579@N00&lang=en-us&format=json&jsoncallback=?"},_init:function()
{$.Widget.prototype._init.apply(this,arguments);var $widget=this.widget();var options=this.options;var set=$widget.attr("id").split("-")[1];var url=options.url.replace("%s",set);$.getJSON(url,$.proxy(this,"_feed"));},_feed:function(data)
{var $widget=this.widget();var $ul=$("<ul />",{overflow:"hidden"});$widget.append($ul);$.each(data.items,function(i)
{$ul.append('<li style="list-style-type: none;margin: 0px;"><img style="margin: 0px;" src="'+this.media.m.replace("_m","")+'" /></li>');});$widget.slideshow().bind("slideshowslide",function(e,data)
{if(data!=null){return;}
e.preventDefault();$("li",e.target).eq(0).fadeOut(500,function()
{$(e.target).trigger("slideshowslide",{done:true});$(this).css({display:"block"});});});}});})(jQuery);;;(function($)
{$.fn.extend({hyperlink:function(settings)
{settings=$.extend({index:0},settings);return this.css({cursor:"pointer"}).bind("click",function(e)
{location.href=$(this).find("a").eq(settings.index).attr("href")}).bind("mouseenter",function()
{$(this).addClass("mouseenter");}).bind("mouseleave",function()
{$(this).removeClass("mouseenter");});}});})(jQuery);;;(function($)
{$.fn.extend({equalheight:function(settings)
{settings=$.extend({},settings);var max=0;var res=this.each(function()
{max=Math.max(max,$(this).height());});this.css({height:max+"px"});return res;}});})(jQuery);;jQuery(function()
{(function($)
{var $body=$("#body");var $aboutTeasers=$("#page-about .teasers .article");$signout=$("a#sign-out",$body).eq(0);$signout.each(function()
{$signout.attr({target:null});}).bind("click",function(e)
{e.preventDefault();var $this=$signout;$iframe=$("<iframe />",{src:"http://vimeo.com/log_out",css:{width:1,height:1,position:"absolute",border:0,margin:0,padding:0}});$iframe.bind("load",function()
{location.href=$this.attr("href")+"odz/";});$("body").append($iframe);});$(".education-list",$body).educationList();$(".video-list",$body).videoList({panel:$(".video-panel",$body).videoPanel()});$("#page-contact #map").contactMap();$("div[id^=flickr-]").flickr();$body.find(".collection-list .item",$body).add(".education-list .article",$body).add(".event-list .article",$body).add(".featured-event",$body).add(".entry-call",$body).add(".blog-teaser .post",$body).add(".promotion",$body).add(".shop-promotion",$body).add($aboutTeasers).hyperlink();$aboutTeasers.find(".body").equalheight();$(".playing, .comment-list .age, .file-type",$body).fold();$(".twitter-list li",$body).fold({corners:"br"});$("object, embed",$body).each(function()
{var $this=$(this);$this.css({width:"620px",height:"350px"});});if($.browser.msie){if($.browser.version<8){$hr=$("hr");$hr.each(function()
{var style=this.currentStyle;var $span=$("<span class='hr'></span>");$.each(style,function(i)
{$span.css(i,this);});$(this).replaceWith($span);});}}})(jQuery.noConflict());});jQuery(function()
{if(jQuery.browser.webkit==true){jQuery("body").addClass("browser-webkit");}});;
