/**
 * Notifier message system using jquery_purr
 * @see /www/code/admin/js/jquery_purr/purr.js
 * @param mixed options  // Example: { "title" : "Hello there" }
 */
var notifyMessage=function(b){var c={title:"Notice",message:"Action Successful",notifyType:"info",delay:4000};if(b){jQuery.extend(c,b)}var a;switch(c.notifyType){case"warning":a="/common/images/icons/48x48/shadow/warning.png";break;case"info":a="/admin/images/info.png";break;default:a="/admin/images/info.png";break}var d='<div class="notice"><div class="notice-body"><img src="'+a+'" alt="" /><h3>'+c.title+"</h3><p>"+c.message+'</p></div><div class="notice-bottom"></div></div>';jQuery(d).purr({usingTransparentPNG:true,removeTimer:c.delay});return false};

