
$(document).ready( function() {


	$('.linkbutton').hover(
	  function() {
		$(this).addClass('hover');
	  },
	  function() {
		$(this).removeClass('hover');
	  }
	);


	$("a[href='#tweetme']").click( function( ) {

		window.location.href = 'http://twitter.com/josephkuefler';

		return false;
	});
	$("a[href='#mailme']").click( function( ) {
		
		var u = 'mailto:';
		u += 'hi@';
		u += 'civilsocial.';
		u += 'com';

		window.location.href = u;

		return false;
	});


});


