
$(document).ready(function() {

	/*
	 * AUTO POPUP BANNERS
	 */
	// check for cookie first
	var hidePopup = $.cookie('hidePopup');
	// hidePopup = false;
	if ( hidePopup !== "True" ) {
		// add the banner with ajax and UI
		$.get( relPath + 'include/popup.asp?rp=' + encodeURIComponent(relPath), function(data){
			// make sure there is a banner before showing the popup
			if(data !== 'NOT FOUND'){
				var $popupDialog = $('<div></div>')
					.html(data)
					.dialog({
						resizable: false,
						autoOpen: false,
						title: '',
						closeText: 'Close',
						modal: true,
						width: 635
					});
				$popupDialog.dialog('open');
			}
		});
	}

});


