jQuery(document).ready(function($) {
	var postfix = '_on';
	$('.rollover, #header .rbox .contact a img, .submenu01 p a img, .documentDL a img, .sampleCase a img, #sampleMovie p a img, #inquiry table a img, .submenuBox308L a img, #tokki a img, .btnBox a img, .btn a img, .over a img').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});
