
function resizer() {
    var winWidth = $(window).width();
    var winHeight = $(window).height();
    $('.absolute').css('width',winWidth);
    $('.posAps').css('width',winWidth);
    $('.posAps').css('height',winHeight);
}

$(window).resize(function() {
  
      resizer();
    
});

$(document).ready(function() {
  
    resizer();
  
    $(".navigation li:odd").addClass('odd');
  
    $(".navigation li a").hover(
      function () {
        $(this).next(".subText").fadeIn();
      }, 
      function () {
        $(this).next(".subText").fadeOut();
      }
    );
  
  $('.mainContent').fadeIn(1000);
  
  $('.textHolder').jScrollPane({showArrows: true});
  
  $('.link').html('<object width="125px"><param name="movie" value="/media/flash/hobo_hard.swf"/><param name="wmode" value="transparent"/><embed src="/media/flash/hobo_hard.swf" width="125px" wmode="transparent"></embed></object>');

});
  
  



