    
    /**
     * Default JavaScript for Solid Square
     * @author Solid Square
     */
    Cufon.replace(".cufon", {
        color: '-linear-gradient(#ecd27c, 0.1=#ffc405, 0.5=#ffba00, 0.7=#e79904, 0.8=#ffcc29, #e79904)'
    });
    Cufon.now();
    $(function() {
        if($(".blocks").length) {
            var arrow = $('<div class="link-arrow"><div class="phase-1"></div><div class="phase-2">Bekijk project</div></div>');
            arrow
                .click(function() {
                    var target = $(this)
                        .siblings("a")
                        .attr("href");
                    window.location = target;
                })
                .clone()
                .appendTo(".block")
                .hide();
            $(".blocks .block")
                .css({
                    cursor: "pointer"
                })
                .click(function() {
                    var target = $(this)
                        .find("a")
                        .attr("href");
                    window.location = target;
                })
                .hover(function() {
                    $(".blocks .block img")
                        .stop()
                        .animate({
                            opacity: 0.8
                        });
                    $(this)
                        .find("img")
                        .stop()
                        .css({
                            opacity: 1
                        });
                    $(this)
                        .find(".link-arrow")
                        .show()
                        .find(".phase-2")
                        .css({
                            width: 0
                        })
                        .siblings(".phase-1")
                        .css({
                            width: 0
                        })
                        .animate({
                            width: 33
                        }, 150, function() {
                            $(this)
                                .siblings(".phase-2")
                                .animate({
                                    width: 177
                                }, 300);
                        });
                }, function() {
                    $(".blocks .block img")
                        .stop()
                        .animate({
                            opacity: 1
                        });
                    $(this)
                        .find(".link-arrow")
                        .hide()
                        .find(".phase-1, .phase-2")
                        .stop();
                });
        }
        // Internet Explorer 6 PNG fixes
        if(window.DD_belatedPNG) {
            var fixable = [
                "img",
                ".hr",
                ".clouds",
                ".link-arrow .phase-1, .link-arrow .phase-2",
                ".block",
                ".border"
            ];
            for(var x = 0; x < fixable.length; x++) {
                DD_belatedPNG.fix(fixable[x]);
            }
        }
    });
