$(document).ready(function(){
	$('a[href=#top]').click(function(){
	    $('html, body').animate({scrollTop:0}, 'slow');
	    return false;
	});
});


//$(document).ready(function(){

//  $(window).scroll(function(){
//    if(window.pageYOffset > 125 || document.documentElement > 125 || window.scrollTop > 125 || document.body.scrollTop > 125){
//     $('#subNav').css({'position':'fixed','top':'20px'});
//    } else {
//      $('#subNav').css({'position':'absolute','top':'145px'});
//    }
//  });

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



//});