$(document).ready(function() {
  log("loaded");
  
  //case studies roll overs
	if ($('#thumbbox').length) {
	  $('#thumbbox a').preload();
	};
	
	
	$('#thumbbox a').mouseover(function() {
	  if( ! $(this).hasClass('curthumb')){
  	 //exchange big image with this one
  	 $('.curthumb').fadeTo("fast", 1).removeClass('curthumb');
  	 newimg = $(this).attr("href");
  	 $(this).addClass("curthumb").fadeTo("fast", .5);
  	 $('#main img').attr('src', newimg).hide().fadeIn('fast').addClass('galimg');	
  	 $('#databox').show();
	   $('#databox p').html($(this).find('.idata').html()); 
    }
	});
	
	$('#thumbbox a').click(function(){return false;});
	
});
