
$(document).ready(function(){
						   $("#staff-mid-left, #staff-mid-right").fadeTo("slow", 0.6); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#staff-mid-left, #staff-mid-right").hover(function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 0.6); // This should set the opacity back to 30% on mouseout
							   	});
						   
						   });





jQuery(document).ready(function(){
	$("#staff-nav li").simpletip({ 
								   // Configuration properties  
								   content: 'My Simpletip', 
								   fixed: true,
								   position: 'top'
								   });

});



function imgSwap(img,imgSrc) {
	document[img].src = imgSrc ;
}

function preload(imgObj,imgSrc) {
	if (document.images) {
		eval(imgObj+' = new Image()')
		eval(imgObj+'.src = "'+imgSrc+'"')
	}
}

preload('meet','../images/meet-our-staff.png')





