﻿$(document).ready(function() {
    $(".galleryIndex img").each(function() {
        if (!$(this).parent("a").hasClass("selected")) {
            $(this).fadeTo("slow", "0.5");
        }
    });
    $(".galleryIndex img").hover(
		function() {
		    $(this).fadeTo("fast", "1");
		},
		function() {
		    if (!$(this).parent("a").hasClass("selected")) {
		        $(this).fadeTo("fast", "0.5");
		    }
		});
    $(".galleryIndex a").click(function(event) {
        event.preventDefault();
        $(".galleryIndex a").each(function() {
            if ($(this).hasClass("selected")) {
                $(this).removeClass("selected");
                $(this).find("img").fadeTo("fast", "0.5");
            }
        });
        $(this).addClass("selected");
        var caption = $(this).attr("title");
        $(".galleryImageDesc").empty();
        $(".galleryImageDesc").append(caption);
        var imageSrc = $(this).attr("href");
        $("img.galleryImage").hide();
        $("img.galleryImage").attr("src", imageSrc);
        $("img.galleryImage").fadeIn("fast");
    });
});