$().ready(function() {

	//prep the things we know will be ajax thickboxes :)
	$('#content a').each(function(i) {
		var href = $(this).attr('href');
		//!href ~ just an anchor
		if (href && (
			href.indexOf('/listings/info/') != -1 ||
			href.indexOf('/listings/docs/') != -1
			))
		{
			$(this).attr('href',href+'?KeepThis=true&TB_iframe=true&height=480&width=640');
			$(this).attr('class','thickbox');
		}
	});

});
