$(document).ready(function()
{
	$('a.greybox').click(function(e)
	{
		e.preventDefault();
		
		GB_showCenter('', $(this).attr('href'), 500, 700);
	});
	
	$('#GB_overlay, .GB_Window table.header .close div').live('click', function(e)
	{
		e.preventDefault();
		
		GB_hide();
	});
});
