function loginurl() {
	  Lightview.show({
		href: '/login/small.php',
		rel: 'iframe',
		title: 'First login to add url to your iqosmo network',
		caption: '',
		options: {
		  width: 600,
		  height: 400,
		  //topclose: true,
		  ajax: {
			method: 'get',
			evalScripts: true,
			onComplete: function(){ $('name').focus(); }
		  }
		}
	  });
}
function addurl() {
	  Lightview.show({
		href: '/frontpage/addtonetwork.php',
		rel: 'iframe',
		title: 'Add url to your iqosmo network',
		caption: '',
		options: {
		  width: 600,
		  height: 120,
		  //topclose: true,
		  ajax: {
			method: 'get',
			evalScripts: true,
			onComplete: function(){ $('name').focus(); }
		  }
		}
	  });
}
jQuery(function() {
	var $gallery = $('.column1'), $trash = $('#droppable');
	jQuery(".column1").sortable({
	  connectWith: ['.column1'],
      update : function () {
		var order = jQuery('.column1').sortable('serialize');
  		jQuery("#info").load("/frontpage/sqlsend.php?"+order+"&row="+1+"");
      }
	});
	jQuery(".column1").disableSelection();
});
