var Y = YUI({
	base: '/assets/javascript/yui3/'
	
});
Y.use('node-base', function(Y){
	/**
	 * Bei klicken auf das Logo wird die Hauptseite geladen
	 */
	Y.on('click', function() {
		document.location.href = "http://" + document.location.host;
	}, '#logo_l');


	Y.on('change', function () {
		var selectBox = Y.Node.getDOMNode(this),
		land = selectBox.options[selectBox.selectedIndex].value;

		if (land == '') {
			document.location.href = '/tarife.html';
		} else {
			document.location.href = '/tarife/' + land  + '.html';
		}
	},'#tarifQuickSelect');

	

});