jQuery.fn.nospam = function() {
    // Inspiration: No Spam v1.3 by Mike Branski <http://www.leftrightdesigns.com/library/jquery/nospam/>
	return this.each(function(){
		$(this).text($(this).text().replace(' at ', '@').replace(' dot ', '.'));
	});
};

$(window).load(function() {
    $('#header-inner').click(function(){
        location.href = '/';
    });
    $('#header-inner').css('cursor', 'pointer');
    $('.sc-email').nospam();
});


