$().ready(function() {
	$('a[target="coffeetable"]').removeAttr("onclick");
	$('a[target="coffeetable"]').click(function() {
		TB_show('', $(this).attr('href') + '?TB_iframe=true&width=865&height=605', false);
		return false;
	});

	thickbox_opener = {};

	$('a[target="thickbox"]').each(function(i) {
		result 				= $(this).attr('onclick').toString().match(/width=(\d*),height=(\d*)/i);
		thickbox_opener[i]	= $(this).attr('href') + '&width=' + result[1] + '&height=' + (parseInt(result[2])) + '&TB_iframe=true';

		$(this).removeAttr("onclick");

		$(this).click(function() {
			TB_show('', thickbox_opener[i], false);
			return false;
		});
	});
});