$().ready(function() {
    if (!$.cookie('Sewmag_Subscribe_Seen_20110922'))
    {
        $('#mypopup').jqm({
		
		onShow: function(h) {
        /* callback executed when a trigger click. Show notice */
        h.w.animate({height: 'show', opacity: 'show'}, 'slow');
        },
      	onHide: function(h) {
        /* callback executed on window hide. Hide notice, overlay. */
        h.w.fadeOut("fast",function() { if(h.o) h.o.remove(); }); }, toTop: true
		
		});
        $('#mypopup').jqmShow();
		$.cookie('Sewmag_Subscribe_Seen_20110922', '1', { path: '/', expires: 30 });
}
});
