/*--------------------------------------------------------------------------*
*
* Copyright (C) 2010 Brand Labs LLC
*
*--------------------------------------------------------------------------*/

var BlogFeed=Class.create({CONTAINER_ID:'homepage_row3',Feed_URL:'/v/feed/',initialize:function(){this.loaded=false;this.container=null;Event.observe(window,'load',this.load.bind(this));},load:function(){var thisObj=this;try{if(this.loaded){return;}
this.loaded=true;this.container=$(this.CONTAINER_ID);if(this.container==null){return;}
new Ajax.Updater(this.container,this.Feed_URL,{method:'get',encoding:'windows-1252',evalJS:false,evalJSON:false});}
catch(e){}}});try{new BlogFeed();}
catch(e){}
