// For IE hover flicker bug
try {
  document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
// Hello jQuery!
$(document).ready(function(){
// First, let's tell tag the page when javascript is on.
	$("body").addClass("jsOn");
// Is the viewer using Opera? If so, let's tag the artifact so
// we can correct the animation errors.
	if(jQuery.browser.opera) {
		$("#artifact").addClass("hasOpera")
	};
// Once the all the images are loaded, do two things: fade in
// the artifact image and slide down the artifact caption
	$(window).load(function(){
		$("#artifactImage").fadeIn( 1500 );
		$("#artifact p a").animate({ top: "0px" } , 1250);
	})
}); // Bye-bye jQuery!

