function ambTo(sDom, sUser){
	  return("mail"+"to:"+sUser+"@"+sDom.replace(/%23/g,"."));
	}
	function senseTo(sDom, sUser){
	  return(sUser+"@"+sDom.replace(/%23/g,"."));
	}
	


function headline_rotate() {
  current_headline = (old_headline + 1) % headline_count; //remainder will always equal old_headline until it reaches headline_count - at which point it becomes zero. clock arithmetic
  $("div.headline:eq(" + old_headline + ")").animate({top: -205},"slow", function() {
    $(this).css('top','210px');
    });
  $("div.headline:eq(" + current_headline + ")").show().animate({top: 5},"slow");  
  old_headline = current_headline;
}

function headline_rotate22() {
  current_headline22 = (old_headline22 + 1) % headline_count22; //remainder will always equal old_headline until it reaches headline_count - at which point it becomes zero. clock arithmetic
  $("div.headline22:eq(" + old_headline22 + ")").animate({top: -205},"slow", function() {
    $(this).css('top','210px');
    });
  $("div.headline22:eq(" + current_headline22 + ")").show().animate({top: 5},"slow");  
  old_headline22 = current_headline22;
}

function headline_rotate2() {
  current_headline2 = (old_headline2 + 1) % headline_count2; //remainder will always equal old_headline until it reaches headline_count - at which point it becomes zero. clock arithmetic
  $("div.headline2:eq(" + old_headline2 + ")").animate({top: -245},0, function() {
    $(this).css('top','245px');
    });
  $("div.headline2:eq(" + current_headline2 + ")").show().animate({top: 0},0);  
  old_headline2 = current_headline2;
}
