
// DOM ready!

$(function(){

  // Use the cookie plugin
  
  $.fn.EasyWidgets({
				   
    behaviour : {
      useCookies : true
    },
	
    i18n : {
      collapseText : '<span class="Callapse"></span>',
      extendText : '<span class="Extend"></span>'
    },
	
    effects : {
      effectDuration : 100,
      widgetShow : 'slide',
      widgetHide : 'slide',
      widgetClose : 'slide',
      widgetExtend : 'slide',
      widgetCollapse : 'slide',
      widgetOpenEdit : 'slide',
      widgetCloseEdit : 'slide',
      widgetCancelEdit : 'slide'
    }
	
  });

});