jQuery(document).ready(function(){
	jQuery('.mysmallpic a img').hover(
		function(){
			jQuery(this).css("border-color","#007b00");
			var a = jQuery(this).parent().attr('imgInfo');
			jQuery('.goods-detail-pic a img').attr('src',a);
		},
		function(){
			jQuery(this).css("border-color","#004500");
		}
	);
	jQuery('.nav_down li').hover(
		function(){
			jQuery(this).addClass('current');
		},
		function(){
			jQuery(this).removeClass('current');
		}
	);
	jQuery('.nav_center li').hover(
		function(){
			jQuery(this).addClass('current');
		},
		function(){
			jQuery(this).removeClass('current');
		}
	);
	jQuery('.list_desc_on').hover(
		function(){
			jQuery(this).css("color","#19a409");
		},
		function(){
			jQuery(this).css("color","#497D35");
		}
	);
	jQuery('.list_asc_on i').hover(
		function(){
			jQuery(this).css("color","#19a409");
		},
		function(){
			jQuery(this).css("color","#497D35");
		}
	);
	jQuery('.list_desc i').hover(
		function(){
			jQuery(this).css("color","#19a409");
		},
		function(){
			jQuery(this).css("color","#497D35");
		}
	);
});	

