/* 2008-06-23 */

$(document).ready(function(){

	$('ul.ro').hover(function() {
		$('.content').addClass('hover')
		$('img.ro-img').show()
	}, function() {
		$('img.ro-img').hide() 
		$('.content').removeClass('hover')
	})
	
	$('.ro a').mouseover(function() {
		tmp_rel = $(this).attr('rel')
		tmp_class = $(this).attr('class')
		tmp_illu = tmp_rel
		if (tmp_rel.indexOf('|') != -1) {
			tmp_rel = tmp_rel.split('|')
			tmp_illu = tmp_rel[0]
		}
		if (tmp_illu != $('img.ro-img').attr('src')) {
			$('img.ro-img').hide()
			$('img.ro-img').attr('src',tmp_illu)
			
			$('img.ro-img').show()

		}
	});

});



