jQuery(document).ready(function($)
{
	$('.modal_open a').unbind('click');
		
    $('.modal_open a').click(function(event)
	{
		event.preventDefault();
		$.post(this.href, function(data)
		{
			$.modal(data, '', {
				'position':'fixed',
                'width': 700,
                'frameHeight' : '550px'
            }).find('.close').remove();			
		});
	});
});
