// JavaScript Document

$(function(){

// Email

    $('a.email').each(function(i) {
        var text = $(this).text();
        var address = text.replace(" at ", "@");
        $(this).attr('href', 'mailto:' + address + $(this).attr('href'));
            $(this).text(address);
     });

    $('a.emaillk').each(function(i) {
        var text = $(this).attr('rel');
        var address = text.replace(" at ", "@");
        $(this).attr('href', 'mailto:' + address + $(this).attr('href'));
     });

	//setInterval("scrollbg()",1);

});


//BG function

var curpos = 0;

function scrollbg(){
	var d = new Date();
	var newtime = d.getTime();
	//curpos = (newtime-curtime)*50/1000;
	curpos += 1;
	$('body').css("background-position",curpos+"px 0px");
}

