$(document).ready(function() {
  $(document.createElement('img'))
    .attr({'src': 'images/decoration' + (Math.floor(Math.random() * 14) + 1) + '.png'})
    .css({'position': 'absolute', 'top': (Math.floor(Math.random() * 50) + 1), 'left': (Math.floor(Math.random() * 600) + 1)})
    .appendTo('#container');
});
