// 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"});
				$("a[rel='window']").colorbox({iframe:true, width:500, height:300});

				$('#dropdown > li').hover(
					function(){
						$(this).find('ul').css({display:'block'});
						$(this).find('a:eq(0)').addClass('activated');	
						$(this).find('ul > li > ul').css({display:'none'})											
					},
					function(){
						$(this).find('ul').slideUp(0.001);
						$(this).find('a:eq(0)').removeClass('activated');	
					}
				);
				
				$('#dropdown > li > ul > 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');	
					}
				);
			});			
			
	  function initialize() {
		var latlng = new google.maps.LatLng(49.591525, 17.249829);
		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!"
		  });	
	  }					
	  
		var flashvars = {};
		var params = {};
		params.wmode = "transparent";
		var attributes = {};
		swfobject.embedSWF("/unnitrading_header.swf", "header_flash", "910", "306", "8.0.0", false, flashvars, params, attributes);
