

$(document).ready(function() {
	img = '<img src="typo3conf/ext/user_meteo/inc/loading.gif"/>';



	if(!targetPUrl) {
		$("select[@name='product']").change(function() {
			$(".meteo").html(img);
			$(".location").html(" ");
			$(".location").load('index.php?id='+curP+'&no_cache=1&action=getLocation&product='+encodeURI($(this).val()),function() {
				$(".meteo").html(' ');
				$("select[@name='location']").change(function() {
					$(".meteo").html(img);
					$(".meteo").load('index.php?id='+curP+'&no_cache=1&action=getMeteo&location='+encodeURI($(this).val()));
				});
			});
		});
	} else {
		$("select[@name='product']").change(function() {
			var url = targetPUrl.replace('__product_var__',encodeURI($(this).val()));
			window.location.href=url;
		});
	}

	if($("select[@name='product']").val()) {
		$("select[@name='product']").trigger('change');
	}
}) ;

