var cycle;

$(function() {
  $('#searchfield').hint();
  
  if ($('#middlecolumn').height() > 750) {
	  $('#leftcolumn').css('height', ($('#middlecolumn').height() - 10) + "px");
  }
  
  //$('.infoimage').css('height', $('.infoimage').height());
  $('.infoimage').css('position', 'relative');
  $('.infoimage img').css('position', 'absolute');
  
  $('.infoimage').hover(function() {
	 $('.infoimage img:first').fadeOut();
	 $('.infoimage img:last').fadeIn();
  },function() {
	  $('.infoimage img:last').fadeOut();
	  $('.infoimage img:first').fadeIn();
  });
});