$(function() {
	$.fn.createDialog.defaults = {
        progress: true,
        center: true,
        opacity: 0.7,
        bg: '#000',
		index: 200
	}
    $(".enlarge a").createDialog({
    	addr: 'http://www.lincolnthinktank.co.uk/contact_us/_large_map',
    	opacity: 0.5,
		progress: true
    });
	$(".directions a").createDialog({
    	addr: 'http://www.lincolnthinktank.co.uk/contact_us/_directions',
    	opacity: 0.5,
		progress: true
    });
	$(".directions a").click(
		function(){
			return false;
		}
	);
	$(".enlarge a").click(
		function(){
			return false;
		}
	);
	
});