﻿$(document).ready(function() {
      // **************** Start ordlista **************** //
     $(".content a[class='ord']").qtip({
      api: {
             onRender: function()
             {
                var selectedWord = this;
                var id = this.elements.target.attr('rel');
    		$.getJSON("Admin/Sve/Moduler/Ordlista/WCF/GlossaryService.svc/GetWord?DocId=" + id, null, function(data) {
            	  for (var i in data)
            	  {
	 	     selectedWord.updateContent(data[i].Description);
                  }  
	        });
             }
      },
      show: { delay: 0 },
      content: 'start value', 
      position: {
         corner: {
           target: 'topRight',
           tooltip: 'bottomLeft'
         }
      },
     style: { 
       border: {
         width: 2,
         radius: 3,
         color: '#6699CC'
       },
       min : 100,
       width: 200,
       tip: {  
         corner: 'bottomLeft', 
         color: '#6699ee'
       }	 
      }
      });
      // **************** End ordlista **************** //
      
      
    });
