$(document).ready(function() {
    $('#pagination').css('display','inline-block');
    //setInterval(changeBackground, 10000);
});

function changeBackground() {    
    $('#background').find('img').animate({opacity: '0'}, {duration:500, complete: function() {
        $('#background').randomChild();
    }});
    
    
    $('#background').find('img').animate({opacity: '1'}, {duration:500});    
}

function writeCookie(l) {             
    var the_cookie = "users_resolution2="+ screen.width +"x"+ screen.height;
    document.cookie=the_cookie; 
    location = l; 
}
