$(document).ready(function () {
    $(function () {
        $("#switch_profile").click(function () {
            $('#profile_list').toggle();
        });
    });
    
    $(function () {
        $(".account").click(function () {
          $('ul.settings').toggle();
        });
    });
    
    $(function () {
        $(".btn_canceljob, form#reason_cancel .actions a").click(function () {
          $('form#reason_cancel').toggle();
        });
    });
    
    $(".instructions .instruction").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
    $('.instructions .instruction').hover(function() {
      $(this).addClass('section_btn');
    }, function() {
      $(this).removeClass('section_btn');
    });
    
    // Datepicker
    $('.datepicker').datepicker({
      inline: true
    });

    // Input Text Replacement
    $(".textReplacement").focus(function () {
        this.value = '';
        this.style.color = '#333'
        this.style.background = '#fff'
      }
    );

    $(".textReplacement").focusout(function () {
        if (this.value == '') {
            this.value = 'Enter Email Address';
            this.style.color = '#333'
            this.style.background = '#fff'
            this.style.color = '#999';
        }
      }
    );
});
