// 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});	

				$('#dropdown > li').hover(
					function(){
						$(this).find('ul').slideDown(250);
						$(this).find('a:eq(0)').addClass('activated');												
					},
					function(){
						$(this).find('ul').slideUp(0.01);
						$(this).find('a:eq(0)').removeClass('activated');	
					}
				);
				
				//onclick reset input value
				$('.form_input').focus(
					function() {
						if (this.value == this.defaultValue) {
							this.value = '';
						}
					}
					);
				$('.form_input').blur(
					function() {
						if (this.value == '') {
							this.value = this.defaultValue;
						}
					}
				);
				
				$(".newsticker-jcarousellite").jCarouselLite({
					vertical: true,
					hoverPause:true,
					visible: 2,
					auto:2500,
					speed:1500
				});				
				
			});		
			
	  function initialize() {
		var latlng = new google.maps.LatLng(49.5938248, 17.249903);
		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 contentString = "GeneralMed";
		var infowindow = new google.maps.InfoWindow({
		    content: contentString
		});
		*/
		
		var marker = new google.maps.Marker({
		  position: latlng, 
		  map: map, 
		  title:"GeneralMed"
		});
		
		/*
		google.maps.event.addListener(marker, 'click', function() {
  			infowindow.open(map,marker);
		});
		*/
	  }				
