function passes_cookie_filter() {
	var cookie_value = '' + $.cookie('price_change_promo');
	return (cookie_value === '1');
}

jQuery(document).ready(function($){
	if ( passes_cookie_filter() ) {

		// this contains the hidden popup content, which will be shared across all other instances.
		// any element having the class "private_sale_promo_image" will gain an onclick handler that opens the popup.
		$.get(
			'/site/price_change_promo/images/top_navmenu/top_navmenu.ajax',
			function(html){
				$('#global_header_container #slb_menu_promo').append(html);
			}
		);

	}
});

