var animationInProgress=false;var expanded=false;$.noConflict();jQuery(document).ready(function($){$('#contactBtn').click(function(){toggleContactInfo()})});function toggleContactInfo(){if(animationInProgress===true){return}animationInProgress=true;if(expanded===false){jQuery('#socialConnection').animate({width:'+=80',height:'+=76'},1000,function(){animationInProgress=false;expanded=true})}else{jQuery('#socialConnection').animate({width:'-=80',height:'-=76'},1000,function(){animationInProgress=false;expanded=false})}}
