
$(function(){

  var body_height = $(window).height();
 // var content_height = $(".container").height();
  var content_height = 1;
  var nheight = body_height-109;

  if (content_height < body_height ) {
    $(".content").css("height", nheight+"px");
    $(".container").css("height", body_height+"px");
    if (/MSIE (5\.5|6).+Win/.test(navigator.userAgent)){
      $(".content").css("height", nheight+"px");
    }

  }

  $(window).resize(function() {
  var body_height = $(window).height();
  var content_height = 1;
  var nheight = body_height-109;

  if (content_height < body_height ) {
    $(".content").css("height", nheight+"px");
    $(".container").css("height", body_height+"px");
    if (/MSIE (5\.5|6).+Win/.test(navigator.userAgent)){
      $(".content").css("height", nheight+"px");
    }

  }
});






$('.to_top').click(function() {  $(".sc_ul li:last").prependTo(".sc_ul"); return false; });
$('.to_bottom').click(function() {  $(".sc_ul li:first").appendTo(".sc_ul"); return false; });


});



