 $(document).ready(function(){
   resize();
 });

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


resize = function() {
  $ourheight = ($(window).height())-135;
	if ($ourheight < 526) {
		$('#player_dynamic').parent().height($ourheight);
    $('#player_border').parent().height($ourheight);
		$('#player_dynamic').height('100%');
    $('#player_border').height('100%');
    $('#player_dynamic').width(($('#player_dynamic').height()*1.483));
    $('#player_border').width(($('#player_dynamic').height()*1.483));
    $('#webtv_footer').width(($('#player_dynamic').height()*1.483));
    if( $('#player_dynamic').width()>670){
      $('#header').width(($('#player_dynamic').height()*1.483));
      $('#navigation').width(($('#player_dynamic').height()*1.483));
      $('#content').width(($('#player_dynamic').height()*1.483));
      if ($('#header').width() < 670) {
        $('#content').width(670);
        $('#header').width(670);
        $('#navigation').width(670);
      }
    }else{
      $('#content').width(670);
      $('#header').width(670);
      $('#navigation').width(670);
    }
	} else {
		$('#player_dynamic').parent().height(526);
    $('#player_border').parent().height(526);
    $('#player_dynamic').width(780);
    $('#player_border').width(780);
    $('#header').width(780);
    $('#navigation').width(780);
    $('#content').width(790);
    $('#webtv_footer').width(790);
		$('#player_dynamic').height('100%');
	}
};
