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;
  } else if (!$('#'+sect+"_content").is(":visible")) {
	  $('#'+sect+"_content").fadeIn("slow");
  }
  document.title = "A video about " + window.brand.fullname_possessive + " " +videoTitle+ " » Features » Our Homes";
  document.getElementById('featuresFlash').playThisVideo('features/'+sect+'.flv');
}

$(document).ready(function(){	
  selected = '';
  $('#featureDescription > 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);}
};

$(".closeBtn").click( function (e) {
    e.stopPropagation();
    $(this).parent().toggle();
});
