/*
var geoGalleta = getCookie('geoGalleta3');
var geoCity = getCookie('cbl_city');

if ( !geoGalleta ) {

	if ( geoCity != '' ) {
	
		geoCity = geoCity.toUpperCase();
		
		var geoCurrentPath = location.pathname.substring(0, location.pathname.lastIndexOf('/') + 1);
		
		if ( location.hostname.indexOf("mmcmdev.mmcm.ca") != -1 || location.hostname.indexOf("www.mmcm.com") != -1 ) {
			if ( location.href.indexOf("/en") == -1 ) {
				geoCurrentPath += 'en/';
			}
		}
		
		if ( geoCity.indexOf('EDMONTON') != -1 ) {
			
			setCookieMinutes('geoGalleta3', '1', 60);
			document.location = geoCurrentPath + 'discounts-AB.html';
		
		} else if ( geoCity.indexOf('TORONTO') != -1 ) {
		
			setCookieMinutes('geoGalleta3', '1', 60);
			document.location = geoCurrentPath + 'discounts-ON.html';
			
		}
	
	}
	
}
*/

