// JavaScript Document

$(function() {
    $('#download').click(function() {
        var obj = $(this);
        obj.blur();
    });
doDefault();
    //doMenuShow();
    doPicShow();
   //doTeamHover();
   //doNewsScroll();

});

function doDefault()
{
    $('.teamblock2 .p4inner').find('.p4').hide();
}

function doPicShow() {
    $('#indexFenxiRightTuandui>ul>li').mouseenter(function() {
        var obj = $(this);
        obj.find('.imgshow').css({"z-index":"0","position":"absolute"}).stop().animate({"top":"315"},500);
    });
    $('#indexFenxiRightTuandui>ul>li').mouseleave(function() {
        var obj = $(this);
        obj.find('.imgshow').css({"z-index":"100","position":"absolute"}).stop().animate({"top":"0"},500);
    });

}

