$(document).ready(function(){
                    //jquery tab ²å¼þ
                    //Author panyuan520@gmail.com
					$.fn.extend({
				 	tab:function(a,b,c,d){
						$(this).children().each(function(i){
							$(this).mouseover(function(){
								$(this).addClass(d).siblings("."+d).removeClass(d)
								$(c).children().eq(i).show(a).siblings().hide(b)
							})

					})	
					}
				   }
				   )
				 
					$(".FavorableListTitle").tab("","",".FavorableList","cur3");
					$(".FavorableListTitle1").tab("","",".FavorableList1","cur1");
					
				
				
				        $(".login1 .title li").each(function(i){
				$(this).mouseover(
					function(){
						$(".login1 .content li").hide();
						$(".login1 .title li").removeClass("cur");
				 		$(".login1 .content li").eq(i).show();
						$(this).addClass("cur");
						
					}
				)
				
			})
				
				
					
					  $(".product-category1 dt").bind("click",function(){
				if($(this).next("dd").css("display") == "none"){
					$(this).nextAll("dd").show(800);	 
 				}
				else{
					$(this).nextAll("dd").hide(700);
				}
				
				
				
				
			 
		 		
		 });


 $(".category1 dt").toggle(
			function(){
				$(this).find("img").attr("src","Themes/Skin_Default/images/icon_list_up.gif")
				$(this).parent().children("dd").show(800)
			}
			,function(){
				$(this).find("img").attr("src","Themes/Skin_Default/images/icon_list_down.gif")
				$(this).parent().children("dd").hide(700)
			}
		)
					
})	

