document.domain = "cheshi.com";
$().ready(function(){
	$('#toggle_div .titile_bbc a').mouseover(function(){
		$('#toggle_div .titile_bbc a').removeClass('enda_1');
		$(this).addClass('enda_1');
		if($(this).attr('showid')!='bseries_all'){
			$('#bseries_all ul').hide();
			$('.'+$(this).attr('showid')).show();
		}else{
			$('#bseries_all ul').show();
		}
	});
	$('#seller_common_provinces a').click(function(){
		$('#seller_common_provinces a').removeClass('jiaft');
		$(this).addClass('jiaft');
	});
	$('#rank_1 .cso_title a').mouseover(function(){
		$('#rank_1 .cso_title a').removeClass('curren_t');
		$(this).addClass('curren_t');
		var a_length = $('#rank_1 .cso_title a').length;
		for(var i = 0 ; i < a_length ; i ++){
			if($('#rank_1 .cso_title a').eq(i).text() == $(this).text()){
				$('#rank_1 ul').eq(i).show();
			}else{
				$('#rank_1 ul').eq(i).hide();
			}
		}
	});
	$('#rank_2 .cso_title a').mouseover(function(){
		$('#rank_2 .cso_title a').removeClass('curren_t');
		$(this).addClass('curren_t');
		var a_length = $('#rank_2 .cso_title a').length;
		for(var i = 0 ; i < a_length ; i ++){
			if($('#rank_2 .cso_title a').eq(i).text() == $(this).text()){
				$('#rank_2 .bgtop_01').eq(i).show();
			}else{
				$('#rank_2 .bgtop_01').eq(i).hide();
			}
		}
	});
	$('#hide_more').click(function(){
		$('#hot_bseries_2').hide();
		$('#hot_bseries_1').show();
	});
	$('#show_more_b').click(function(){
		$('#hot_bseries_1').hide();
		$('#hot_bseries_2').show();
	});
	$('#show_desp').click(function(){
		$('#desp').show();
	});
	$('#hide_desp').click(function(){
		$('#desp').hide();
	});
	$('#bseries_all ul').mouseover(function(){
		$(this).addClass('deren');
	}).mouseout(function(){
		$(this).removeClass('deren');
	});
});