$(document).ready(function(){
   

/*
   $(window).bind('load', function () {

      $.each($('.replace'), function(){
         $(this).html('<img src="/images/' +  $(this).attr('id') + '.png"/>');
      });
        
   });
*/
$('.presslink').css('background-image', 'url(\'/images/' + $(this).id + '.jpg\')');



$('ul#mainpage').innerfade({
	speed: 750,
	timeout: 3000,
	containerheight: '420px'
});

$('.hover').hover(function(){
   $(this).fadeTo("fast", 0.5); 
}, function(){
   $(this).fadeTo("fast", 1.0); 
});




$('.presslink').hover(function(){
   //$('img',this).attr('src', '/images/' + this.id + '_hover.jpg');
    $(this).fadeTo("fast", 0.5);
}, function(){
   //$('img',this).attr('src', '/images/' + this.id + '.gif');
    $(this).fadeTo("fast", 1.0); 
});

   $('.disabled').click(function(){
      
      return false;
      
   });
   
});