$(function(){
    
    $(document).mousemove(function(e){
        var x = Math.round(event.pageX / $(document).width() * 100)/2 +25
         ,  y = Math.round(event.pageY / $(document).height() * 100)
        $("#main").css("background-position", x+"% "+y+"%");
    })
    
})
