
jQuery(function($) {
	showCloseLink();
	hideShowAlert();
});

function showCloseLink() {
	$('.close-popup').html('<a href="" id="close-link" class="open-close-popup">Close</a>');
}

function hideShowAlert() {
	$('.open-close-popup').bind('click', function() {
		if ($('#alert-popup').css('display') != 'block') {
			$('#alert-popup').show();
		} else {
			$('#alert-popup').hide();
		}
		return false;
	});
};
