

$(document).ready(function(){

	$('.roBox').click(function(){
		window.location.href = $(this).children('.roBoxCon a:first').attr('href')
	}).mouseover(function(){
		$(this).attr('class','roBoxHover')
		$(this).children('div:first').hide()
		$(this).children('div:last').show()
	}).mouseout(function(){
		$(this).attr('class','roBox')
		$(this).children('div:last').hide()
		$(this).children('div:first').show()
	})

});