$j(document).ready(function() {
	$j(".close").click(function(){
		parent.tb_remove();
		return false;
	});

	$("a.back").click(function(){
		parent.tb_remove();
		return false;
	})

	$("a.submit").click(function(){
		form = $(this).parents("form");

		return false;
	})

});
