$(document).ready(function(){
	$(".back-connect").click(
		function () {
	   		$(this).parent(".contact-link").toggleClass("expanded");
			$(this).parent().children('.container').slideToggle(200);
		}
	);

	$("a .client").animate({opacity: .70}, 0).hover(
		function() { $(this).stop(true).animate({opacity: 1}, {duration: 300, queue: false})},
		function() { $(this).stop(true).animate({opacity: .70}, {duration: 300, queue: false})}
	);
})


