$(document).ready(function() {
	$('a.contact').click(function() {
		var href = $(this).attr('href');
		self.location = href;
		location.reload(true);

		return false;
	});
});
