$(document).ready(function(){
	// $('#trailerSkin').flash(
	//     { src: '/themes/owid/trailer.swf' }, 
	//     { update: false }
	// );
  $(window).scroll(function(){
    if(window.pageYOffset > 177 || document.documentElement > 177 || window.scrollTop > 177 || document.body.scrollTop > 177){
      $('#castCrewNav').css({'position':'fixed','top':'0'});
    } else {
      $('#castCrewNav').css({'position':'absolute','top':'44px'});
    }
  });

  $('#castCrewNav a').click(function(e){
    e.preventDefault();
    href = $(this).attr('href');
    str = (!href || href == '') ? 0 : '#' + $(this).attr('href');
    $(document).stop().scrollTo(str, 600);
  });
});