﻿/* set height */
function FixHeight() {
    
  // $("#Content").height($(document).height() - $("#Top").height() - $("#SecondLine").height() - $("#LastLine").height() -20);
    $("#arrows").height($(document).height() - 20);
    // alert($("#wrapper").height());
   

}
$(window).resize(FixHeight);
$(document).ready(FixHeight);        
