/* STA country switcher for store.onlinetefl.com  19-9-11 JM */
jQuery(document).ready(function () {
	jQuery("a[href^='https://stagbp.onlinetefl.com']").click(function (event) {
		var link = jQuery(this).attr("href");
		jQuery('#currency-form input#teflProduct').val(link);
		jQuery.fancybox({
			'type': 'inline',
			'href': '#dialogue',
			'scrolling': 'no',
			'titleShow': false,
			'modal': true,
			'padding': 0,
			'speedIn': 150,
			'speedOut': 150
		});
		jQuery('.fancybox-bg').remove();
		return false;
	});
	jQuery("form#currency-form").submit(function () {
		var globalStore = jQuery('#currency-form select option:selected').val();
		var link = jQuery('#currency-form input#teflProduct').val();
		link = link.replace("stagbp", globalStore);
		window.location = link;
		jQuery.fancybox.close();
		return false;
	});
});
