$(document).ready(function(){
     var zindex = 1;
	 $('.rot').each(function(){
			 var rot = 0;// Math.random()*30-15+'deg';
//			 var left = Math.random()*-3+'px';
//			 var top = Math.random()*-5+'px';
			 var left = Math.random()+'px';
			 var top = Math.random()+'px';
			 var curwidth = $(this).css('width');
			 $(this).css('-webkit-transform' , 'rotate('+rot+')');
			 $(this).css('-moz-transform' , 'rotate('+rot+')');
			 $(this).css('top' , left);
			 $(this).css('left' , top);
			 $(this).mouseup(function(){
				 zindex++;
				 $(this).css('z-index' , zindex);
			 });
			 $(this).mouseover(function(){
				$(this).css('border-color', "#666");
			 });
			$(this).mouseout(function(){
				$(this).css('border-color', "#fff");
			 });

	     });
							   
});
