$(window).load(function() {	
	function showPopup(id){
		//$('#map div.popup').fadeOut(); 
		var boxid = '#' + id + '-box';
		$(boxid).fadeIn();
		$('a.close').click(function(){
			$(this).parent().fadeOut();
		});
	}
	$('#map').fadeIn("slow");
	$('a.bullet').each(function(){				
				var coords = $(this).attr('rel').split('-');
				$(this).hide();
				$(this).css('left',coords[0]+'px');
				$(this).css('top',coords[1]+'px');
				setTimeout('$("a.bullet").fadeIn("slow")',2000);
				$(this).click(function(){showPopup($(this).attr('id'));});
				/*$(this).css({left: coords[0] + 'px', top: coords[1] + 'px'})
					   .hide()
					   .fadeIn()
					   .click(function(){showPopup($(this).attr('id'));});*/
	});
	//initialize map
	//initializeMap();
	

});
