if (!window.fujifilm){ var fujifilm = {}; }
(function(fujifilm){
	var $ = jQuery;
	
	fujifilm.setRollOver = setRollOver;
	function setRollOver ( imgEl ) {
		imgEl._orgSrc = imgEl.src;
		new Image().src = imgEl._overSrc = imgEl.src.replace(/\.(gif|jpe?g?|png)$/, function($0){return('_o' + $0)});
		$(imgEl).hover(
			function(){
				$(this).attr('src', imgEl._overSrc);
			},
			function(){
				$(this).attr('src', imgEl._orgSrc)
			}
		);
	}
	
	$(function(){
		var $mainContent = $('#mainContent');
		$mainContent.find('ul.thumbs li a img').each(function(){
			fujifilm.setRollOver(this);
		});

		var $removeImageIconContentAnc = $('#contentsBody > div.panelAreaFull > div.panelTrayA01 > div.panelTrayUnitA01 > div.bgImageUnit >  div.bgImageUnit > div.panelL3R1 > div.panelUnitR > div.buttonPanel01 a');
		$removeImageIconContentAnc.find('> img.iconImage').remove();
		$removeImageIconContentAnc.find('img.iconImage').css({'display':'inline'});

	});
})(fujifilm);
document.write('<style type="text/css">div.buttonPanel01 a img.iconImage{display:none}</style>');


