$(document).ready(function(){
        $("a[rel='example1']").colorbox({transition:"fade"});
        $(".colorbox").colorbox({iframe:true, width:500, height:500});
		$(".doporucit").colorbox({iframe:true, width:542, height:750});
		$(".dotaz").colorbox({iframe:true, width:542, height:750});
		$(".mapa_window").colorbox({iframe:true, width:600, height:500});
		
		$('#dropdown > li').hover(
			function(){
				$(this).find('ul').show();
				$(this).find('a:eq(0)').addClass('activated');												
			},
			function(){
				$(this).find('ul').hide();
				$(this).find('a:eq(0)').removeClass('activated');	
			}
		);
		
		$('#dropdown2 > li').hover(
			function(){
				$(this).find('ul').show();
				$(this).find('a:eq(0)').addClass('activated');												
			},
			function(){
				$(this).find('ul').hide();
				$(this).find('a:eq(0)').removeClass('activated');	
			}
		);
		
		$('#search_znacka,#search_rok,#search_cena').sSelect({ddMaxHeight: '250px'});
		
		$(".print").click(function(event){
			event.preventDefault();
			window.print();
	   	});
		
		$(".popup_close").click(function(){
			$("#popup").hide();
		});
});	

	  function initialize() {
		var latlng = new google.maps.LatLng(49.58536, 17.29199);
		var myOptions = {
		  zoom: 14,
		  scrollwheel: false,
		  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(49.59600936121319, 17.28053390979767);
		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!"
		});
	  }	

