$(document).ready(function() {
	// case study gallery
	$("#thumbs li:first-child a").addClass('current');
	$("#thumbs li a").click(function() {
			$("#thumbs li a").removeClass('current');
				$(this).addClass('current');
				var largePath = $(this).attr("href");
				$("#gallery img:first").attr({ src: largePath });
				return false;
			});

	//tooltips
	$('table.results tr td img[title]').qtip({style: { 
		tip: { // Now an object instead of a string
		         corner: 'bottomMiddle', 
		         color: '#a31b27',
		         size: {
		            x: 15, // Be careful that the x and y values refer to coordinates on screen, not height or width.
		            y : 10 // Depending on which corner your tooltip is at, x and y could mean either height or width!
		         }
		},
	      width: 260,
	      padding: 10,
	      background: '#ffffff',
	      color: '#a31b27',
	      textAlign: 'center',
	      border: {
	         width: 7,
	         color: '#a31b27'
	      }
	}, position: {corner: {target: 'topMiddle',tooltip: 'bottomMiddle'}}});
	
	//slideshow leadership section
	$('#ld_gallery').innerfade({ animationtype: 'fade', speed: 1200, timeout: 3000, type: 'sequence', containerheight: '400px' }); 
	
});