$(function(){
	$("#header-bottom-search-content-right,#index-static-words-title,#order-review-continue-img,#img_continue_checkout,#header-cart-nav-1-right,#btn-search,#nav-home,#nav-shoes,#nav-jewelry,#nav-scarves,#nav-handbags,#nav-wallets,#euro,#usd,#bripound,#canadian,#aus,#swit,#hk,#btn_addtocart,#search_img,#img-contactus,#btn_addtowishlist,#btn_pro_contactus").hover(function(){
		$(this).css('cursor','pointer');
	},function(){
		$(this).css('cursor','normal');
	});
	
	$("#header-bottom-nav-list ul li").hover(function(){
		$(this).removeClass('li-before').addClass('li-after');
	},function(){
		$(this).removeClass('li-after').addClass('li-before');
	});
	
	$("#index-static-words-title").toggle(function(){
		$("#index-static-words-content").slideDown();
	},function(){
		$("#index-static-words-content").slideUp();
	});
	
	/*
	$("#index-sidebar").setScroll( //scrollContent为滚动层的ID
	{img:'images/scroll-arrow-bg.gif',width:15},//背景图及其宽度
	{img:'images/scroll-arrow-up_03.gif',height:15},//up image
	{img:'images/scroll-arrow-down_03.gif',height:15},//down image
	{img:'images/scroll-arrow-center_03.gif',height:15}//bar image
	); 
	*/
	
	$("#nav-allbrands").hover(function(){
		$(this).css('cursor','pointer');
		$("#show-all-brands").show();
	},function(){
		$(this).css('cursor','normal');
		$("#show-all-brands").hide();
	});
	
	$("#show-all-brands").hover(function(){
		$(this).show();
	},function(){
		$(this).hide();
	});
	
});
