$(document).ready(function(){
	// ロールオーバー用のクラスの除去
	if ($('#pageID').length == 1) {
	 	var id = '#' + $('#pageID').val();
	 	if ($(id).length == 1) {
			$(id).removeAttr('class');
			$(id).attr('src', $(id).attr('src').replace(/\.(gif|jpe?g|png)$/, '_ov.$1'));
		}
	}
});

