$(document).ready(function(){   
	
	$(".fairslink").click(function () {
	  	$("#fairsinfo").slideToggle("slow");
	});
	
	$(".showslink").click(function () {
	  	$("#showsinfo").slideToggle("slow");
	});
	
	//order history toggle order detail divs
	$(".history .hdate a[@href]").click( function(){
                var whichID = $(this).attr("rel");
                $(this).toggleText("View details","Hide details");
				$("#" + whichID).slideToggle();
               return false;
    });

});