$(document).ready(function(){
     var zindex = 1;
	 $("img.photoS").draggable({
                         containment : $('.tekst'),
			start: function(event, ui) {
				zindex++;
				var cssObj = { 'z-index' : zindex };
				$(this).css(cssObj);
			}
	 });
	 $('img.photoS').each(function(){
			 var rot = Math.random()*30-15+'deg';
			 var left = Math.random()*50;
			 var top = Math.random()*150+'px';
                         if(left > 200) { left = 200; }
			 //$(this).css('-webkit-transform' , 'rotate('+rot+')');
			 //$(this).css('-moz-transform' , 'rotate('+rot+')');
			 //$(this).css('top' , left + 'px');
			 //$(this).css('left' , top);
			 $(this).mouseup(function(){
				 zindex++;
				 $(this).css('z-index' , zindex);
			 });
	     });
	$('img.photoS').dblclick(function(){
			$(this).css('-webkit-transform' , 'rotate(0)');
			$(this).css('-moz-transform' , 'rotate(0)');
	});
							   
});
