﻿$(document).ready(function() {
    // Prepair for FancyBox
    $("#inspirationImages > a img").each(function() {
        // Get the link info
        var hiresSrc = $(this).closest("a").attr("longdesc");
        var hiResText = $(this).attr("title");

        // Construct the hires link
        var hiresHref = "<a href=\"" + hiresSrc + "\">" + hiResText + "</a>";
        $(this).closest("a").attr("longdesc", hiresHref);

        // Remove the used attributes in the image
        $(this).removeAttr("title");
    });

    // Load FancyBox, but only for items in specifik id
    $("#inspirationImages > a").fancybox({
        'hideOnContentClick': false,
        'imageScale': true
    });
});