﻿/// <reference path="../global/jquery-1.3.2-vsdoc.js" />
/// <reference path="../global/dockmenu.js" />

//作者：陈希章



$(function() {
    //底部的导航栏，仿苹果效果
    $('#dock2').Fisheye(
				{
				    maxWidth: 60,
				    items: 'a',
				    itemsText: 'span',
				    container: '.dock-container2',
				    itemWidth: 40,
				    proximity: 80,
				    alignment: 'left',
				    valign: 'bottom',
				    halign: 'center'
				});


 


    //所有的widget，点击标题栏，都可以收起详细信息，并且切换一下按钮图标
    //$("div.widget>.title").click(function() {
        //$(this).children(".icon").toggleClass("icon2");
        //$(this).next(".details").slideToggle("fast");
    //});

});
				
			