﻿// map.layout.js

$(document).ready(function() {
	
	// Country Selector
	$('#selector').change(function() {
		value = '/' + $(this).val();
		$(this).val('');
		
		window.location = value;
	});
	
});

// zurück Button
$(document).ready(function() {
	$('#content .back a').click(function() {
		
		if(history.length > 1) {
			history.back();
			return false;
		}
		
		return true;
	});
});