function goTo( sect, videoTitle ){
  if (sect.indexOf('#') > -1){ sect = sect.substr( sect.indexOf('#')+1 ); }		
  if(selected != sect){ 
    $('#'+selected+"_content").hide();
    $('#'+sect+"_content").fadeIn("slow");
    selected = sect;
  }
  document.title = "A video about " + window.brand.fullname_possessive + " " +videoTitle+ " » Features » Our Homes";
  document.getElementById('featuresFlash').playThisVideo('../../media/videos/features/'+sect+'.flv');
}

$(document).ready(function(){	
  selected = '';
  $('#column-one > div').filter('.movie').css({display:"none"});
});
// if this is a link with content, go to that content - have to wait til the flash files load
window.onload=function(){
		// have to wait to allow all the files to start
  if (location.href.indexOf('#') > -1){ setTimeout('goTo("'+location.href+'")', 2000);}
};
