$(document).ready(function () {
    $('div.topBlock').click(function () {
		$('ul.dropList').slideToggle(400);
    });
	$('ul.dropList').click(function () {
		$('ul.dropList').slideToggle(400);
    });
	$('.dropList li a').click(function(){ //select value from list
			var val = $(this).text();
			$('.topBlock').text(val);
		});
});

$(document).ready(function(){
/* ### Beginn ### */
/* Slideshow */
        $('#imageContainer').cycle({
            fx:    'fade',
            speed:  5000
    });
        $('#imageContainerTirolmap').cycle({
            fx:    'fade',
            speed:  5000
    })
/* ### Ende ### */
});
