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

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

	
  var h = $('#mainDiv')[0].offsetHeight-80;
  $('.mainPanel').css({'height':h+'px'});
  $('.mainPanel table.mainDivTable, .mainPanel table.mainDivTable #newsDiv').css({'height':(h-30)+'px'});
  $('#guestDiv').css({'height':(h-130)+'px'});
  h2 = 	$('#contentDiv')[0].offsetHeight-20;
  $('#contentDiv2').css({'height':(h2)+'px'});


  $('#contentDiv2').css({'height':(h-40)+'px'});
  if (getId('guestDiv'))
  {
  	$('#guestDiv').css({'width':($('#guestDiv').parent().parent()[0].clientWidth)});
  	var un = $.cookie('c_guestUserName')?$.cookie('c_guestUserName'):'';
  	$('#autor').attr({'value':un});
  }
 }