/* Author: Chase Farnum
	

*/

$(function(){

	$('#contact-btn').hover (
		function() {
			$(this).prepend($("<span>></span>"));
		},
		function() {
			$(this).find("span:last").remove();
	});	


});





