$(document).ready(function() {
  $("#header ul#menu li:last").css("border-right", "0px");
  $("#footer ul li:last").css("border-right", "0px");
  
  $("#medical_question").click(function() {
    $("#add_question").slideToggle();
    $("#ok_question").remove();
  });

  $(".intext").blur(function() {
    if ($(this).val() == '') {
      $(this).val($(this).attr("title"));
    }
  });
  
  $(".intext").focus(function() {
    if ($(this).val() == $(this).attr("title")) {
      $(this).val("");
    }    
  });
  
  
    
  $("#online_popup").click(function() {
    $("#popup_layer").fadeIn();
    $("#popup_box").fadeIn();
  });  
  
  $(".button_link").click(function() {
    $("#popup_layer").fadeIn();
    $("#popup_box").fadeIn();
  });  

});
