$(document).ready(function () {  
	//show dynamic navigation, hide static
    $('#slide .nav:first').appendTo('#wrapper');
    $('#wrapper').append('<h3 id="title" class="slide"><\/h3>');
    $('#wrapper .nav a').attr('href','#');
    $('#slide .nav').hide();
    
    //map
    var map = '<div id="map"><iframe width="240" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=de&amp;t=p&amp;s=AARTsJr5On3JRYJaYpENqRhjUXyeNhwaDQ&amp;msa=0&amp;msid=116239457356164532072.0004485286aa0d35f5e00&amp;ll=46.474754,9.819031&amp;spn=0.331013,0.302124&amp;z=10&amp;output=embed"><\/iframe><p><a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=de&amp;t=p&amp;msa=0&amp;msid=116239457356164532072.0004485286aa0d35f5e00&amp;ll=46.474754,9.819031&amp;spn=0.331013,0.302124&amp;z=10&amp;source=embed" target="_blank">Larger Map<\/a><\/p><\/div>';
    var map2 = '<div id="map"><iframe width="240" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ch/maps?f=q&amp;hl=de&amp;geocode=&amp;q=N+46%C2%B0+34.476+E+007%C2%B0+58.513&amp;ie=UTF8&amp;t=h&amp;s=AARTsJoDvnHsx65_cjd685WKu1QPKOkECQ&amp;ll=46.571607,7.978649&amp;spn=0.017701,0.020599&amp;z=14&amp;output=embed"><\/iframe><p><a href="http://maps.google.ch/maps?f=q&amp;hl=de&amp;geocode=&amp;q=N+46%C2%B0+34.476+E+007%C2%B0+58.513&amp;ie=UTF8&amp;t=h&amp;s=AARTsJoDvnHsx65_cjd685WKu1QPKOkECQ&amp;ll=46.571607,7.978649&amp;spn=0.017701,0.020599&amp;z=14&amp;source=embed" target="_blank">Larger Map<\/a><\/p><\/div>';

    //enable slideshow
    $('#slide').cycle({
		fx:      'scrollHorz',
		speed:    300,
		timeout:  0, 
		next:   '.next', 
		prev:   '.prev',
    	before:   onBefore,
    	after:   onAfter 
	});
	
	//layers
    $('.layer').appendTo('#wrapper');
    //$('#map').appendTo('#layer_icon12 div.text').css('display','block').css('position','relative');
	function onBefore() { 
		$('.layer').hide();
		$('h3#title').hide();
	}
	
	//icons
    $('.icon').each(function () {
    	$(this).show();
		//$(this).pngFix();
		$(this).click(function () {
			$('.layer').each(function () {
				if ($(this).css('display') == 'block') {
					$(this).hide();
				}
			});	
			var id = '#layer_' + $(this).attr('id');
			$(id).fadeIn(function () {  
				//alert(id);
				if (id == '#layer_icon12') { 
					if ($(this).hasClass('new')) {
						$(this).children('div.bg').children('div.text').html(' ').append(map2);
					} else {
						$(this).children('div.bg').children('div.text').html(' ').append(map);
					}
				}
				$(this).children('div.close').show();
				$(this).children('div.header').css('cursor','move');
				$(this).draggable({handle: 'div.header'});
				$(this).children('div.close').click(function () {
					$(this).parent().fadeOut();
					if (id == '#layer_icon12') { 
						$(this).parent().children('div.bg').children('div.text').html(' ');
					}
				});
			});	
		});	
	});
	
	//fix pngs for IE 6
    if ($.browser.msie && $.browser.version < 7) { 
    	$('#test1 .icon').pngFix(); 
	}
	function onAfter() { 
		$('h3#title').show();
    	var title = $(this).children('h3').text();
		$('h3#title').text(title);
		if ($.browser.msie && $.browser.version < 7) { 
			var slide_id = $(this).attr('id');
			if (slide_id != 'test1'){
				$(this).children('div.icon').pngFix();
			}
		}
	}
});