
$(document).ready(function() {
		 
	// Fade Hover Effect for Staff Profiles
	$('#staff_overview .description').hover(
		function(){
			//Show Text	& Move Up
			$(this).find('.name').animate( {top:"-10px"}, 250 );	
		}, 
		function(){
			//Hide Text	& Move Down			
			$(this).find('.name').animate( {top:"0"}, 250 );
		}		
	);
	
	
	// Banner Slideshow
	if( $.isFunction(jQuery.fn.cycle) ) {
		
		$('#banner_image img').show();
		$('#banner_image').cycle({ 
			timeout: 10000,
			speed: 1200,
			pause: 1
		});
		
	}
		
		 // Drop Down Menu
	 $('.sf-menu').superfish({  
	       delay:		50,
	       speed:		'fast',
	       autoArrows:	false,
	       dropShadows:	true
	 });
	 
	 
	//  Our Workplace Photos
	// -----------------
	
	$('#photo_thumbs a').click(function() {
		// Show current image
		new_photo = $(this).attr('rel');
		image_current_url = $('#photo_main .image.active img').attr('src');
		$('#photo_main .image').removeClass('active').hide();
		$('#photo_main').css('background-image', 'url(' + image_current_url + ')');
		$('#photo_main .image#photo_' + new_photo).fadeIn('slow').addClass('active');
	
		// Show active thumb
		$('#photo_thumbs a').removeClass('active');
		$('#photo_thumbs a[rel=' + new_photo + ']').addClass('active');
		return false;
	});
	
	
});



function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
} 
