$(document).ready(function() {
    //ColorBox
    $("a[rel='gallery']").colorbox();

    //In IE il roundedcornern disabilita il click sul tag A
    $('.clickme').click(function() {
        window.location = this.href;
    });

    //Fix IE7 Div float problems
    if ($.browser.msie && $.browser.version.substr(0, 1) == "7") {
        resizePhotoGallery();

        $(window).resize(function() {
            resizePhotoGallery();
        });
    }
});

function resizePhotoGallery() { $('.divPhotoContainer').width($('body').width() - 400); }

