jQuery(function(){
	//鼠标点击隐藏显示
	jQuery("#other_open").click(function(){
	jQuery('.other_link').slideToggle("fast");}
	, function() {
		jQuery('.other_link').slideToggle("fast");
	});
	jQuery(".other_link > ul > li > a").click(function(){
		jQuery('.other_link').slideUp("slow");								 
										 })
})

var openDiv;
jQuery(function() {
    openDiv = jQuery(".Slide_block .skinbox:first");
    jQuery(".Slide_block .skinbox").hide();
    jQuery(".Slide_block .skinlist").show();
    jQuery(".Slide_block .skinbox:first").show();
    jQuery(".Slide_block .skinlist:first").hide();
    jQuery(".Slide_block .skinlist").mouseover(function() {
        jQuery(openDiv).hide();
        jQuery(openDiv).prev().show();
        jQuery(this).next().show();
        jQuery(this).hide();
        openDiv = jQuery(this).next();
    });
});

jQuery(function() {

jQuery("#robin > div").css("width","2010em").css("position","absolute");
		jQuery("#robin_box").switchable("#robin > div > .picbox", {
			effect: "scroll",
			steps: 1,
			visible: 1
		}).carousel().autoplay();
		// 一个按钮控制两组Scrollable
		var api2 = jQuery("#robin_box").switchable();
		jQuery("#LeftArr").click(function(){
			api2.prev();
			return false;
		});
		jQuery("#RightArr").click(function(){
			api2.next();
			return false;
		});	

});
