/*
//Image hover functions
$(function() {
	$('.work').mouseover(function() {
		$(this).find('img');
	
	});
	$('.work').mouseout(function() {
		$(this).find('img').animate({ opacity: 1 }, 'medium');
	});
});

//Image hover functions
$(function() {
	$('.testimonialShort').mouseover(function() {
		$(this).find('img').stop().animate({ opacity: .65 }, 'medium');
	});  
	$('.testimonialShort').mouseout(function() {
		$(this).find('img').stop().animate({ opacity: 1 }, 'medium');
	});
});

//Image hover functions
$(function() {
	$('.serviceShort').mouseover(function() {
		$(this).find('img').stop().animate({ opacity: .65 }, 'medium');
	});
	$('.serviceShort').mouseout(function() {
		$(this).find('img').stop().animate({ opacity: 1 }, 'medium');
	});
});

*/

