/* TICKETMIX *//* Default City Redirection----------------------------------------------------------------------------- */	$(window).load(function() {		var city = $.cookie("ticketmix_city");		if ($('div#ie6').length > 0) {					return false;				}				if (city == null) {					window.location = '/' + redirect_to + '/all';				} else {					window.location = '/' + redirect_to + '/' + city;		}	});