$(function() {

	$(".tabWrapper").tabs({ fxFade: true, fxSpeed: 'fast' });
	$(".tabWrapper2").tabs({ fxFade: true, fxSpeed: 'fast' });

	/*
	$("#pseudoPage2").hide();
	$("div#Page1link").hide();

	$("div#Page1link a").click(function(){
		$("#pseudoPage2").hide();
		$("#pseudoPage1").show();
		$("div#Page1link").hide();
		$("div#Page2link").show();

		return false;

	});

	$("div#Page2link a").click(function(){
		$("#pseudoPage1").hide();
		$("#pseudoPage2").show();

		$("div#Page2link").hide();
		$("div#Page1link").show();

		return false;
	});
	*/

	$("a#contactTB").click(function(){
		var adref = $("span#adref").html();
		$.ajax({
			type:"POST",
			url:"/horsexch/results_contact.php",
			data:"id="+adref,
			success:function(a,b) {
				$("#TB_ajaxContent").empty().append(a.responseText);
			}
		})
	});
});
