
function focusColor(i){
	i.style.borderColor='#C1D3FB';
	i.style.backgroundColor='#FFFFFF';
}
function blurColor(i){
	i.style.borderColor='#7F9DB9';
	i.style.backgroundColor='#FFFFFF';
}

$(function(){
	$('a.move').click(function(){
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
      && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target
        || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top - 20;
        $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body')
          .animate({scrollTop: targetOffset}, 400);
        return false;
      }
    }
	});
});


$(function(){
	$("table.stripe tr:nth-child(odd)").addClass("odd");
});
