/**
 * Javascript file for the depature skin of the Econa Page Notifier plugin
 * @author Martin Albrecht <martin.albrecht@econa.com>
 * @version 0.1
 */
var depart_main = '#depart_tbl_main';
    
function econa_notify_close() {      
    jQuery(depart_main).fadeOut();
    jQuery.cookie('econa-page-notifier', 'true', {path: '/', domain: window.location.hostname});
    return false;
}

function econa_notify_show() {           
    var win = jQuery(depart_main);
    var cookie = jQuery.cookie('econa-page-notifier');        
    if( typeof cookie !== 'undefined' && cookie !== 'true'){
      if( typeof win !== 'undefined' ) {
          win.fadeIn('slow');
      }
    }
}

