$(document).ready(function(){

		//Login Modal Setup
		var modalOpen=function(hash){ hash.w.fadeIn("slow"); };
		var modalClose=function(hash) { hash.w.fadeOut('',function(){ hash.o.fadeOut('fast'); }); };
		$('#ab_popup').jqm(
		{
			ajax: 'ab_popup.php',
			overlay: 60,
			modal: true,
			onShow:modalOpen,
			onHide:modalClose
		});
		
		//Set external link relations to open in a new window/tab
		$("a[rel='external']").attr("target","_blank");
});

function ab_enabled()
{
	if ( !$.cookie('HideModal') )
	{
		//Show Modal
		$('#ab_popup').jqmShow();
		
		//Set Cookie
		$.cookie('HideModal',1, { expires: 1, path: '/' } );
	}
}

function ab_disabled()
{
	//Thank You!
}
