jQuery(document).ready(function() {

	if (!$.cookie('kendo_region')) {

		$.fancybox.showActivity();

		$.ajax({
			type		: "POST",
			cache		: false,
			url			: "/?eID=com_price_by_region_show_choose_region",
			data		: {"kendo_region": kendo_region.currentRegion},
			success: function(data) {

				$.fancybox(data, {
					'autoDimensions'	: false,
					'width'				: 450,
					'height'			: 200,
					'padding'			: 0,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'onClosed'          : function() {

						$.ajax({
							type		: "POST",
							cache		: false,
							url			: "/?eID=com_price_by_region_save_region",
							data		: {"kendo_region": $.cookie('kendo_region')},
							success: function(data) {
								if ( $.cookie('kendo_region') != kendo_region.currentRegion ) {
									$.fancybox.showActivity();
									window.location = kendo_region.links[$.cookie('kendo_region')];
								}
							}
						});
						
					},
					'onComplete'        : function() {
						$.cookie('kendo_region', $('#tx_compricebyregion_default').val(), { path: '/', 'expires': 9999});

						$('.region_option').bind('click', function() {
							$.cookie('kendo_region', $(this).attr('rel'), { path: '/', 'expires': 9999});
							$.fancybox.close();
						});
					}
				});
			}
		});
	}
});
