function goToLogin(baseurl){
	if(confirm('You have to login to add wallpapers to favourites! Press ok to continue!')){
		document.location = baseurl + '/account/login';
	}
	
	return false;
}

function addToFavouriteBox(objectid){
	if (confirm('Are you sure you want to add this wallpaper to favourites?')) {
		$.ajax({
			type: "POST",
			url: "/favourite_wallpapers/addBox",
			data: "objectid=" + objectid,
			success: function(data){
				$("#favItem_" + objectid).html(data).show('slow');
			}
		});
	}
	else{
		return false;
	}
}

function removeFromFavouritesBox(objectid){
	if (confirm('Are you sure you want to remove this wallpaper from favourites?')) {
		$.ajax({
			type: "POST",
			url: "/favourite_wallpapers/removeBox",
			data: "objectid=" + objectid,
			success: function(data){
				$("#favItem_" + objectid).html(data).show('slow');
			}
		});
	}
	else{
		return false;
	}
}

function addToFavouriteSingle(objectid){
	if (confirm('Are you sure you want to add this wallpaper to favourites?')) {
		$.ajax({
			type: "POST",
			url: "/favourite_wallpapers/addSingle",
			data: "objectid=" + objectid,
			success: function(data){
				$("#favSingle").html(data).show('slow');
			}
		});
	}
	return false;
}

function removeFromFavouritesSingle(objectid){
	if (confirm('Are you sure you want to remove this wallpaper from favourites?')) {
		$.ajax({
			type: "POST",
			url: "/favourite_wallpapers/removeSingle",
			data: "objectid=" + objectid,
			success: function(data){
				$("#favSingle").html(data).show('slow');
			}
		});
	}
	
	return false;
}

