$(document).ready(function(){
	$('.secont_table').hide()
	
	$('.reasons').mouseover(function(){
		$(this).css('background','url("/theme/reasons.png") no-repeat 50% 0')
		$(this).css('color','#fff')
		$('.first_place').css('background','none')
		$('.first_place').css('color','#0966B5')
		$('.secont_table').show()
		$('.first_table').hide()
	})
	$('.first_place').mouseover(function(){
		$(this).css('background','url("/theme/bg_0966B5.png") no-repeat')
		$(this).css('color','#fff')
		$('.reasons').css('background','none')
		$('.reasons').css('color','#0966B5')
		$('.secont_table').hide()
		$('.first_table').show()
	})
	
})
