function goTo( sect ){
  if (sect.indexOf('#') > -1){ sect = sect.substr( sect.indexOf('#')+1 ); }		
  if(selected != sect){ 
    $('#'+selected).slideUp();
    $('#'+sect).slideDown("slow");
    selected = sect;
  }
  document.getElementById('main').playThisVideo('/videos/hamtv_videos/'+sect+'.flv');
}

$(document).ready(function(){	
  selected = '';
  $('#content > 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);}
};