/* 
 * Resize photo to max available
 */

$(function(){
    $(".resizer").hide();
    // track resize event.
    $(window).resize(function () {
        $(".resizer").resizer({
            placeholderDiv:'#contentPanel',
            force_window_height:1
        });
    });
});

    setTimeout("sizeIt()", 1000 );
    function sizeIt () {
        $(".resizer").resizer({
            placeholderDiv:'#contentPanel',
            force_window_height:1
        });
        $(".resizer").fadeIn();
    }

