jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(document).ready(function(){

	$('a.zoompic, a.zoompic120').fancybox();
	$('#bottom_container')
		.ifixpng();

    $.preloadImages('/gfx/credits/jcmpowered3a.png');

	$('#jigsaw')
		.ifixpng()
		.css('cursor','pointer')
		.mouseover(function(){
			$(this).css('background','url(/gfx/credits/jcmpowered3a.png)').ifixpng();
		})
		.mouseout(function(){
			$(this).css('background','url(/gfx/credits/jcmpowered3.png)').ifixpng();
		})
	$('span.zoom, p.msg')
		.ifixpng()
});
