/*  vyuziji jQuery */

$("body").addClass("jsactive");
$("body").removeClass("jsdisabled");

$(document).ready(function(){  
  Cufon.replace('h1');
  $('.zprava .text a, .tvit a').click(function(){
    window.open(this.href);
    return false;
  });
  
  var targetDate = new Date();
    
  // -- vydani Arrowhead - British
  targetDate = new Date(2010, 8-1, 26);
  $('#defaultCountdown').countdown({until: targetDate});   

  // -- vydani OFP
  //targetDate = new Date(2001, 6, 22);
  //$('#defaultCountdown').countdown({since: targetDate}); 

   
  $('#removeCountdown').toggle(function() { 
          $(this).text('Re-attach'); 
          $('#defaultCountdown').countdown('destroy'); 
      }, 
      function() { 
          $(this).text('Remove'); 
          $('#defaultCountdown').countdown({until: targetDate}); 
      } 
  );

  // --- "ukradeno Davidkovi" --- sorry :)
	$("pre").each(function(){  
    var prewidth = $(this).width();
		$(this).hover(function() {
			$(this).animate({ width: "900px"}, 250);
		}, function() {
			$(this).animate({ width: prewidth }, 250);
		});
	});

  
  
});

