function codeIncSortableList()
{
			$(function(){
				$(".sortable").sortable({
					placeholder: 'highlight', 
					items: 'div[sortenable*="true"]', 
					connectWith: '.sort'
				});
				$('.sortable div[sortenable*="true"]').css({
					border:"1px solid #ccc",
					backgroundColor: "#F8F8F8",
					padding:"8px",
					margin:"2px 0",
					cursor:"move"
				});
			});
}
