
$(document).ready(function(){

addBookmark = function(url) {
var path = $('#hidden_path').val();
var title = document.title;
var id = $('#hidden_id').val();
    $.ajax({
      method: "get",
	  url: "/include/favourites/addbookmark.php",
	  data: "url="+url+"&title="+title+"&id="+id,
      beforeSend: function(){
	  $('#addpage').html("Adding page...");
	  $('#bookmarks').slideUp('slow');
	  },
      success: function(html){
	  $('#addpage').html("<a href=\"javascript:;\" onclick=\"delBookmark('"+path+"', '1');\"><img src=\"/include/favourites/images/removebook.png\" alt=\"Remove Bookmark\" /></a><br />");
	  $('#bookmarks').html(html);
	  $('#bookmarks').slideDown('slow');
	  }
    }); 
	}

delBookmark = function(url, id) {
    var path = $('#hidden_path').val();
	var id = $('#hidden_id').val();
    $.ajax({
      method: "get",
	  url: "/include/favourites/delbookmark.php",
	  data: "url="+url+"&id="+id,
      beforeSend: function(){
	  $('#addpage').html("Deleting bookmark...");
	  $('#bookmarks').slideUp('slow');
	  },
      success: function(html){
	  $('#addpage').html("<a href=\"javascript:;\" onclick=\"addBookmark('"+path+"');\"><img src=\"/include/favourites/images/bookmarkthis.png\" alt=\"Bookmark this page\" /></a><br />");
	  $('#bookmarks').html(html);
	  $('#bookmarks').slideDown('slow');
	  }
    }); 
	}
	
quickDel = function(id) {
    var path = $('#hidden_path').val();
	var uid = $('#hidden_id').val();
    $.ajax({
      method: "get",
	  url: "/include/favourites/quickdel.php",
	  data: "id="+id+"&uid="+uid,
      beforeSend: function(){
	  $('#addpage').html("Deleting bookmark...");
	  $('#bookmarks').slideUp('slow');
	  },
      success: function(html){
	  $('#addpage').html("<a href=\"javascript:;\" onclick=\"addBookmark('"+path+"');\"><img src=\"/include/favourites/images/bookmarkthis.png\" alt=\"Bookmark this page\" /></a><br />");
	  $('#bookmarks').html(html);
	  $('#bookmarks').slideDown('slow');
	  }
    }); 
	}

});