﻿/// <reference path="jquery-1.4.1-vsdoc.js" />
$(function () {
    //顶部菜单选中
    var selectedMenu = $("#SelectedMenu").val();
    if (selectedMenu != "")
        $("#" + selectedMenu).addClass("select");
    //################################

    $("a.colorbox-iframe").fancybox({
        'width': '65%',
        'height': '65%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });

    $("a.colorbox-iframe-login").fancybox({
        'width': '55%',
        'height': '55%',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });

    $("a[rel='colorbox']").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});


    //##################
});
