$(document).ready(function() {
	/*
	$(".country").click(function() {
		var id = $(this).attr('id');
		$("ul.cities").hide();
		$("p.stores").hide();
		$("ul#ul_" + id).show();
		$("a.country").removeClass("active");
		$("a#" + id).addClass("active");
	});
	
	$(".city").click(function() {
		var id = $(this).attr('id');
		$("p.stores").hide();
		$("p#p_" + id).show();
		$("a.city").removeClass("active");
		$("a#" + id).addClass("active");
	});
	
	$("#country_select select").change(function() {
		this.form.submit();
	});
	*/
	
	$("select#order_select").change(function() {
		$("div.products").hide();
		$("div#products_" + $(this).val()).show();
	});
	
	$("a.show_div").click(function() {
		var id = $(this).attr("id");
		$("div#" + id + "_div").toggle();
	});
	
	$("input.autosubmit").change(function() {
		var id = $(this).attr("id");
		var form = $(this).parents('form');
		
		form.validate().cancelSubmit = true;
		form.submit();
	});
	
	$("div.banner a").click(function() {
		var rel = $(this).attr("rel");
		
		$(this).parents("div.banner").hide();
		if (rel == "next") {
			$(this).parents("div.banner").next().show();
		} else {
			$(this).parents("div.banner").prev().show();
		}
	});
});
