		function adjustStyle(width) {
    width = parseInt(width);
    if  ((width < 780)) {
        $("#cloud").css({'position' : 'relative' ,'left' : '30px' , 'top' : '7px' , 'margin' : '0'});
    } else {
       $("#cloud").css({'position' : 'absolute' ,'left' : '50%' , 'top' : '50%' , 'margin-top' : '-220px' , 'margin-left' : '-365px'});
    }
}

$(function() {
    adjustStyle($(this).width());
    $(window).resize(function() {
        adjustStyle($(this).width());
    });
})
