$(document).ready(function(){
	$('a').not('.gmail, .blank').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
	var contactAnchors = $('a.gmail span, a.skype span');
	
	$('a#getInTouch').hover(function() {
		contactAnchors.css({'background-color' : '#4d2a6f', 'color' : 'white'});
	},
	function() {
		contactAnchors.css({'background-color' : 'transparent', 'color': '#C3BDA6'});
	});
});
