// JavaScript Document

			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements.
				/*$('a[@rel*=lightbox]').colorbox({transition:"fade"});*/
				$("a[rel='example1']").colorbox({transition:"fade"});
				$(".colorbox").colorbox({iframe:true, width:500, height:500});

				$('#slideshowHolder').jqFancyTransitions({
					effect: 'zipper', // wave, zipper, curtain
					width: 716, // width of panel
					height: 269, // height of panel
					strips: 9, // number of strips
					delay: 3500, // delay between images in ms
					stripDelay: 50, // delay beetwen strips in ms
					titleOpacity: 0.7, // opacity of title
					titleSpeed: 500, // speed of title appereance in ms
					navigation: false, // prev and next navigation buttons
					links: false // show images as links
				});

										
			});	

  function initialize() {
    var latlng = new google.maps.LatLng(49.54838851258863, 17.735413759946823);
    var myOptions = {
      zoom: 14,
      center: latlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
	  var marker = new google.maps.Marker({
		  position: latlng, 
		  map: map, 
		  title:"Hello World!"
	  });	
  }
  
  function initialize2() {
	  var latlng = new google.maps.LatLng(50.092088, 14.438603);
	  var myOptions = {
		zoom: 14,
		scrollwheel: false,
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	  };
	  var map = new google.maps.Map(document.getElementById("map_canvas2"), myOptions);
		var marker = new google.maps.Marker({
			position: latlng, 
			map: map, 
			title:"Hello World!"
		});	
  }	
  
            var flashvars = {};
            var params = {};
            params.wmode = "transparent";
            //params.bgcolor = "#ffffff";
            var attributes = {};
            swfobject.embedSWF("/flash.swf", "flash", "716", "269", "8.0.0", false, flashvars, params, attributes);  
