$(function(){
	/*主大图切换*/

$(function(){
    $(".focus1").sudyfocus({
      p:2,
      zWidth:1920,
      zHeight:420,
	  response: true,
    title: {
        active: true, // 是否显示标题
        isAutoWidth: false, // 标题背景自动宽度
        href: false // 标题是否加文章链接
    },
	  pagination: true,
      speed:700,
	  navigation: true, // 是否显示按钮，上一张、下一张
	  isNavHover: true // 导航按钮是否默认隐藏，鼠标经过时再显示
    });
  });
	/*友情链接下拉*/
	$(".post-80").each(function(index, el){
		$(el).find(".links-wrap").hover(function(){
			$(this).addClass('wrap-open').children('.link-items').stop(true,true).slideDown(300);
		},function(){
			$(this).removeClass('wrap-open').children('.link-items').stop(true,true).slideUp(100);
		});
	});

});

