$(document).ready(function(){
	// 左侧菜单
	$('.mainNavErect ul li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});

	// 图片切换广告
	var pl1 = new pictruePlayer("adPicPlayer");
	pl1.timeOut = 6080;
	pl1.play();

	// 热销商品选项卡切换
	$('.cardGroupS .cardOption .title').click(function(){
		$(this).parent().siblings().removeClass('hover');
		$(this).parent().addClass('hover');
	});
	$('.cardGroupS .cardOption:first .title').click();
});