$tdjQuery = jQuery.noConflict();
$tdjQuery(document).ready(function(){	
	var slider = true;
	$tdjQuery("#slideshow").easySlider({
		auto: true,
		pause: 6500,
		speed: 500,
		continuous: true,
		numeric:true,
		numericId: 'controls'
	});
	
	$tdjQuery("#testimonials").easySlider({
		auto: true,
		pause: 4000,
		speed: 500,
		continuous: true,
		controlsShow:false
	});
	
	$tdjQuery('.show').click(function() {
		 $tdjQuery("#shadow").fadeTo("slow", 0.7);
		 $tdjQuery("#memberbox").fadeIn("slow");
	});
	
	$tdjQuery('#shadow').click(function() {
		 $tdjQuery("#shadow").hide();
		 $tdjQuery("#memberbox").fadeOut("fast");
	});
	
	if(!location.hash)
		set_active = 'false';
	else
		set_active = location.hash;

	$tdjQuery("#accordion").accordion({ header: "h2.head", autoHeight: false, collapsible: true, active: set_active });
	//$tdjQuery("#accordion").accordion( "option", "active", 2 );
	//alert(location.hash);
	
	$tdjQuery(".tabs").tabs();
	
});	

