function reveal(link, p) {		
	jQuery("#" + link).hide();
//	jQuery("#" + p).show();
	jQuery("#" + p).slideDown(100);
}


function writePreviewLink() {
	var url = location.href;
	
	if(url.indexOf("file:") > -1) {
		var href = "http://www.agencydublin.com" + url.slice(url.indexOf("/agency/"));
		href = href.split("index.html").join("");
		document.write("<a href='" + href + "'>Preview</a>");
	}
}


