﻿//幻灯鼠标事件
$(function () {
    //缩率图鼠标事件
    $('#picList img').mouseover(function () {
        if ($('#show_a img').attr('src') == $(this).attr('src')) { return }; //显示当前图片
        $('#show_a img').fadeOut(0).fadeIn(300).attr('src', $(this).attr('src'));
        $('#show_a').attr('href', $(this).parents('a').attr('href')); //图片链接
        $('#show_a').attr('title', $(this).parents('a').attr('title')); //图片提示
        $('#showTitle').html($(this).parents('a').attr('title')); //图片标题
        $(this).parents('li').nextAll('li').find('img').animate({ top: 10, opacity: 0.6 }, 500);
        $(this).parents('li').prevAll('li').find('img').animate({ top: 10, opacity: 0.6 }, 500);
        $(this).animate({ top: 0 }, 300).css({ 'opacity': '1', 'zoom': '1' });
    });

    //滤镜幻灯效果
    //缩率图背景
    $('#smallPicBg').css({ 'opacity': '0.4', 'zoom': '1' });
    $('#picList img').css({ 'opacity': '0.6', 'zoom': '1' });
    $('#picList img:last').css({ 'top': '0', 'opacity': '1', 'zoom': '1' });
    $('#picList a').click(function () { return false });

    ////标题背景
    $('#titleBg').css({ 'opacity': '0.4', 'zoom': '1' });
});

	
	
