$(document).ready(
	function() {
		$('p.eventDescription>a').fancybox(
			{
				'hideOnContentClick' : false,
				'frameWidth' : 525,
				'frameHeight' : 455,
			
				'callbackOnShow' :
				function() {
					$('#edContentArea a').click(
						function() {
							top.window.location = $(this).attr('href');
						}
					);
				}
			}
		);
	}
);
