var bgColors = ['#ffffff', '#deeaff'];

function transitBackgroundColor() {
  $('#wrapper').animate({ 
    backgroundColor: bgColors[Math.floor(Math.random() * 2)]
  }, 30000);
}

$(function() {
  //setInterval('transitBackgroundColor()', 30000);
  $('a.popup').click(function() {
    window.open($(this).attr('href'));
    return false;
  });
});