﻿$().ready(function () {
    $('#top-links li').last().addClass("last");
    $(".enlarge").hide();
    $(".thumb a").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
    $(".thumb a").hover(function () {
        $(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
        $(this).children("img").fadeTo("fast", 1.0);
    }, function () {
        $(this).fadeTo("fast", 1.0); // This should set the opacity back to 60% on mouseout
        $(this).children("img").fadeTo("fast", 0.0);
    });
    
    $(".thumb a").fancybox({
        'width': 1010,
        'height': '90%',
        'autoScale': false,
        'transitionIn': 'elastic',
        'transitionOut': 'none',
        'type': 'iframe',
        'speedIn'		:	600, 
		'speedOut'		:	200,
		'centerOnScroll': true,
		'titleShow': true,
        'titlePosition': 'over',
    });

    $(".thumb a[rel=image]").fancybox({
        'transitionIn': 'elastic',
        'speedIn': 600,
        'speedOut': 200,
        'centerOnScroll': true,
        'titlePosition': 'over'
    });
});
