$(document).ready(function () {
    // png
    $('').pngFix( );
    // footer
    $("#footer").positionFooter(true);
    
    var maxX = $('#right').width() - 85;
    var maxY = $('#right').height() - 85;
    
    var x = Math.floor( Math.random() * maxX );
    var y = Math.floor( Math.random() * maxY );
    $('#baloon3').css({left: x, top: y});
    
    x = Math.floor( Math.random() * maxX );
    y = Math.floor( Math.random() * maxY );
    $('#baloon4').css({left: x, top: y});

});

