//	表明当前是拍卖还是直购,值有auc表示拍卖,shop表示直购
if(!action)action='Auction';
if(action=='Auction')
	$j('#aAuction').css('background','url(/Html/Tpl/0760/Public/Images/left-anniu2.gif) no-repeat top');
else $j('#aAuction').css('background','url(/Html/Tpl/0760/Public/Images/left-anniu1.gif) no-repeat top');	
if(action=='Shopping')
	$j('#aShop').css('background','url(/Html/Tpl/0760/Public/Images/left-anniu2.gif) no-repeat top');
else $j('#aShop').css('background','url(/Html/Tpl/0760/Public/Images/left-anniu1.gif) no-repeat top');
$j(function(){
	if(action=='Auction')
	{
		$j('#aShop').hover(function()
						{
							$j(this).css('background','url(/Html/Tpl/0760/Public/Images/left-anniu3.gif) no-repeat top');
						},
						function()
						{
							$j(this).css('background','url(/Html/Tpl/0760/Public/Images/left-anniu1.gif) no-repeat top');
						});
	}
	if(action=='Shopping')
	{
		$j('#aAuction').hover(function()
						{
							$j(this).css('background','url(/Html/Tpl/0760/Public/Images/left-anniu3.gif) no-repeat top');
						},
						function()
						{
							$j(this).css('background','url(/Html/Tpl/0760/Public/Images/left-anniu1.gif) no-repeat top');
						});	}
});