// JavaScript Document
function toggleEmail(){ 

if ($('.shareTools').height() > 25) {     // Greater than 700px in height 
	$('.shareTools').stop(true).animate({height: '25px'}, {speed: 200, easing: 'easeInBack'});
	//$('.int_close').css( {display: "none"} );
} else{
	$('.shareTools').stop(true).animate({height: '65px'}, {speed: 500, easing: 'easeOutBack'});
	//$('.int_close').css( {display: "block"} );
}


	
}
 
function clearText(field){
    if (field.defaultValue == field.value) field.value = '';
    else if (field.value == '') field.value = field.defaultValue;
}
