$(document).ready(function() {

		$(document).ready(function(){	
			$("#home_slider").easySlider({
				auto: true,
				continuous: true,
				pause: 4300 
			});
		});



	
	
		// applying the settings
		jQuery('#accordion').accordion({
			header: 'div.header',
			event: 'click',
			alwaysOpen: false,
			autoHeight: false,
			animated: true,
			showSpeed: 1200,
			hideSpeed: 30,
			active: false, 
			collapsible: true
		});
		
		

    
	// home page tile remote img load
	$('#tiles img').mouseenter(function(e){
		var thisId = $(this).attr('id');
					
		if (($("#full img:visible").attr('id') != ("f" + thisId)) && ($(this).hasClass('roll'))) {
			$("#full img:visible").fadeOut(10);	
			$("#f" + thisId).show();
		};
	});





	//  people page moseovers on mosaic tile titles
	$('#peoplemosaic div.mosaicitem').mouseenter(function(e){
		$(this).find('div.displaytitle').show();
	});

	$('#peoplemosaic div.mosaicitem').mouseleave(function(e){
		$(this).find('div.displaytitle').hide();
	});


	// searchform
	$('#searchform div input').val('search');
	$('#searchform div input').click(function(e){
		$(this).val('');
	});



});
