$(document).ready(function(){
	thickbox_opener = {};
	thickbox_img_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=' + parseInt(result[1]) + '&height=' + (parseInt(result[2]) + 50) + '&TB_iframe=true';
		
		$(this).removeAttr('onclick');

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