	$(document).ready(function(){
		$("#flash_holder img").hide();
		$('#flash_holder').flash({
		    src: '/images/ocmd-promo.swf',
		    width: 930,
		    height: 300,
		    wmode: 'transparent'	
		});
		$("a.mail").fancybox({'hideOnContentClick':false,'overlayOpacity':.8,'frameWidth':500,'frameHeight':400,'overlayShow':true,'zoomSpeedIn':0,'zoomSpeedOut':0,'imageScale':false});
		
	});

	var temp;
	function toHere(name){
		$("#gDirections br").remove();
		$("#gDirections b").replaceWith(temp);
		temp = $("#gDirections a:first");
		$("#gDirections a:first").replaceWith("<b>To here</b>");
		$("#gDirections + form").remove();
 		$("#gDirections").after('<form action="/directions/"><input type="hidden" name="name" id="name" value="'+name+'" /><input type="hidden" name="daddr" id="daddr" value="'+addr+'" /><small>Start address</small><br /><input type="text" id="saddr" name="saddr"/><input type="submit" value="Go" /><br /><small><a href="javascript:dirCancel()"><< Back</a></small></form>');
	
	}
	function fromHere(name){
		$("#gDirections br").remove();
		$("#gDirections b").replaceWith(temp);
		temp = $("#gDirections a:last");
		$("#gDirections a:last").replaceWith("<b>From here</b>");
		$("#gDirections + form").remove();		
		$("#gDirections").after('<form action="/directions/"><input type="hidden" name="name" id="name" value="'+name+'" /><input type="hidden" name="saddr" id="saddr" value="'+addr+'" /><small>End address</small><br /><input type="text" id="daddr" name="daddr"/><input type="submit" value="Go" /><br /><small><a href="javascript:dirCancel()"><< Back</a></small></form>');
	}
	function dirCancel(){
		$("#gDirections").prepend("<br />");
		$("#gDirections b").replaceWith(temp);
		temp=null;
		$("#gDirections + form").remove();
	}
