$(function(){
	$(".thickbox").click(function() {
		var title = $(this).attr("title");
		$.ajax({
		  type:'GET',
		  url: $(this).attr('href'),
		  success:function(data) {
			$.openWindow(500, 370, title, data);
		  }
		});
		return false;
	});
});
