var tooltip;
var permanotice;

$(document).ready(function(kalas){

var kalas;


tooltip = $.pnotify({
					pnotify_title: kalas,
					pnotify_text: "Klicka här för att redigera innehållet",
					pnotify_hide: false,
					pnotify_closer: false,
					pnotify_history: false,
					pnotify_animate_speed: 100,
					pnotify_opacity: .95,
					pnotify_notice_icon: "ui-icon ui-icon-comment",
					// Setting stack to false causes Pines Notify to ignore this notice when positioning.
					pnotify_stack: false,
					pnotify_after_init: function(pnotify){
						// Remove the notice if the user mouses over it.
						pnotify.mouseout(function(){
							pnotify.pnotify_remove();
						});
					},
					pnotify_before_open: function(pnotify){
						// This prevents the notice from displaying when it's created.
						pnotify.pnotify({
							pnotify_before_open: null
						});
						return false;
					}
				});
				
			});
