﻿jQuery(document).ready(function() {
    jQuery('.galleryItem').hover(
        function() {
            jQuery(this).addClass("over");
        },
        function() {
            jQuery(this).removeClass("over");
        }
    );
    jQuery('.tile .galleryItem').hover(
        function() {
            jQuery(".details").stop(false, true).animate({ dummy: 1 }, 300).stop(false, true);
            jQuery(".details", this).fadeIn("600");
        },
        function() {
            jQuery(".details", this).hide(1);
        }
    );
});
