document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.   <script>
  2.   $(function() {
  3.     $( ".sortable" ).sortable({
  4.       connectWith: ".connectedSortable",
  5.       receive: function( event, ui ) {
  6.         $(this).css({"background-color":"blue"});
  7.       }
  8.     }).disableSelection();
  9.   });
  10.   </script>
');