$(document).ready(function(){


	$('#sidebar.movable').each(function() {
			
			$(this).css({position: 'absolute', top:'-500px', left:'-500px'});
			
			
		postop = Math.random()*500;
		posleft = Math.random()*700;
		
		if ($(this).attr('id')=='sidebar') {
			$(this).animate({
	    		top:'10px',
		        left:'500px'
				}, 500
			);		} else {
			$(this).animate({
	    		top:postop+'px',
		        left:posleft+'px'
				}, 500
			);
		}
	});
});