$(function(){
  $("a").bind("focus",function(){if(this.blur)this.blur();});
  $('#global_menu img').rollover();
  $("a.target_blank").attr("target","_blank");
  $("a[href*='#wrapper'],a[href*='#respond']").easingScroll({ easing: "easeOutExpo", duration:1500 });

  $("#comment_area ol > li:even").addClass("even_comment");
  $("#comment_area ol > li:odd").addClass("odd_comment");
  $(".even_comment > .children > li").addClass("even_comment_children");
  $(".odd_comment > .children > li").addClass("odd_comment_children");
  $(".even_comment_children > .children > li").addClass("odd_comment_children");
  $(".odd_comment_children > .children > li").addClass("even_comment_children");
  $(".even_comment_children > .children > li").addClass("odd_comment_children");
  $(".odd_comment_children > .children > li").addClass("even_comment_children");

  $("#guest_info input,#comment_textarea textarea")
    .focus( function () { $(this).css({borderColor:"#33a8e5"}) } )
    .blur( function () { $(this).css({borderColor:"#f7a5ef"}) } );

});