
$(document).ready(function(){
	
	/* Hakuinfo */
	/*$("#open-image").click(function(event) {
		event.preventDefault();
		
		$("#product-highlight").load("http://localhost/reima/themes/reima/haku_info_kuva.php #product-highlight a", null, function() {
			$("#close-image").click(function(event) {
				event.preventDefault();
				$("#product-highlight").load("http://localhost/reima/themes/reima/haku_info.php");
			});
		});
		
		
	});*/
	
	
	
	/* /Hakuinfo */
	
	
	/* Retailers */
	
	$("select#retailer-country").change(function() {
		
		var selectedCountry = $("select#retailer-country option:selected")[0].value;
		var language = $("input#language")[0].value;
		
		$.ajax({
			type: "POST",
			url: "http://www.reima.fi/retailers/",
			data: "country=" + selectedCountry + "&language=" + language + "&ajax=1",
			success: function(data) {
				$("select#retailer-city").empty();
				$("select#retailer-city").append(data);
			}
		});
		
	});
	
	$("input#retailer-search-btn").click(function(event) {
		event.preventDefault();
	
		var selectedCountry = $("select#retailer-country option:selected")[0].value;
		var selectedCity = $("select#retailer-city option:selected")[0].value;
		var language = $("input#language")[0].value;
		
		$.ajax({
			type: "POST",
			url: "http://www.reima.fi/retailers/",
			data: "country=" + selectedCountry + "&city=" + selectedCity + "&language=" + language + "&ajax=1",
			success: function(data) {
				$("div#main-content").empty();
				$("div#main-content").append(data);
			}
		});
		
	});
	
	
	/* /Retailers */
	
	
	/* Materials */
	
	$("select#material-select").change(function() {
		
		var selectedMaterial = $("select#material-select option:selected")[0].value;
		var language = $("input#language")[0].value;
		
		$.ajax({
			type: "POST",
			url: "http://www.reima.fi/materials/",
			data: "material=" + selectedMaterial + "&language=" + language,
			success: function(data) {
				$("div#main-content").empty();
				$("div#main-content").append(data);
			}
		});
		
	});
	
	/* /Materials */
	
	/*var animateImg = false;
	
	function setAnimateImg(value) {
		animateImg = value;
		alert("moi");
	}*/
	
	//$("div#product-highlight-image")[0].scrollTop = $("div#product-highlight-image").height() / 3;
	$("div#product-highlight-image a img").load(function() {
		($("div#product-highlight-image")[0]).scrollTop = $("div#product-highlight-image").height() / 3;
		/*$("div#product-highlight-image").animate({scrollTop: "100px"}, {duration: 4000, complete: function() {animateImg = true}});*/
	});
	/*$("div#product-highlight-image").animate({scrollTop: "500px"}, 4000, "", setAnimateImg(true));*/
	
	
	
	
});