﻿$(document).ready(function(){
	// 右侧推荐商品
	$('.cmdProduct ol li').mouseover(function(){
		$(this).siblings('li').removeClass('hover');
		$(this).addClass('hover');
	});
	$('.cmdProduct ol li:first-child').addClass('hover');
});
