// JavaScript Document
$(document).ready(function () {


    $j("#various1").fancybox({
        'width': '5',
        'height': '4',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    $j("#various2").fancybox({
        'width': '5',
        'height': '4',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    $j("#various3").fancybox({
        'width': '5',
        'height': '4',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    $j("#various4").fancybox({
        'width': '5',
        'height': '4',
        'autoScale': false,
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'iframe'
    });
    $j("div.right-content a[href$=.jpg],div.right-content a[href$=.png],div.right-content a[href$=.gif],div.right-content a[href$=.ashx]").fancybox({
        'transitionIn': 'none',
        'transitionOut': 'none',
        'type': 'image'
        //'titlePosition' 	: 'over'
        //'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
        //	return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        //}
    });
    $j("#eventtrigger").fancybox({
        'padding'		: 0,
        modal           : true
    });

    setTimeout(function() { $j("#eventtrigger").click(); }, 2000);
});
