﻿$(document).ready(function() {

    $('input.friend').focus(function() {
        if (this.value == this.defaultValue) {
            this.value = '';
        }
        if (this.value != this.defaultValue) {
            this.select();
        }
    });

    $('input.friend').blur(function() {
        if (this.value == '')
            this.value = 'example@yahoo.com';
    });

    /*//hide the all of the element with class msg_body
    $(".slide").hide();

    //toggle the componenet with class msg_body
    $(".opener").click(function() {
    $(this).parent().next('.slide').slideToggle(250);
    return false;
    });

    $("div.about").hide();
    $("div.view").hide();
    $("div.jeanne").hide();
    $("div.stephen").show();
    $("a.stephen").css('font-weight', 'bold');
    $("a.jeanne").css('font-weight', 'normal');
    $("a.vision").css('font-weight', 'normal');
    $("a.beliefs").css('font-weight', 'normal');

    $("a.stephen").click(function() {
    $('div.stephen').show('slow');
    $('div.jeanne').hide('slow');
    $('div.vision').hide('slow');
    $('div.beliefs').hide('slow');
    $("a.stephen").css('font-weight', 'bold');
    $("a.jeanne").css('font-weight', 'normal');
    $("a.vision").css('font-weight', 'normal');
    $("a.beliefs").css('font-weight', 'normal');
    return false;
    });

    $("a.jeanne").click(function() {
    $('div.stephen').hide('slow');
    $('div.jeanne').show('slow');
    $('div.vision').hide('slow');
    $('div.beliefs').hide('slow');
    $("a.jeanne").css('font-weight', 'bold');
    $("a.stephen").css('font-weight', 'normal');
    $("a.vision").css('font-weight', 'normal');
    $("a.beliefs").css('font-weight', 'normal');
    return false;
    });

    $("a.beliefs").click(function() {
    $('div.stephen').hide('slow');
    $('div.jeanne').hide('slow');
    $('div.vision').hide('slow');
    $('div.beliefs').show('slow');
    $("a.beliefs").css('font-weight', 'bold');
    $("a.stephen").css('font-weight', 'normal');
    $("a.jeanne").css('font-weight', 'normal');
    $("a.vision").css('font-weight', 'normal');
    return false;
    });

    $("a.vision").click(function() {
    $('div.stephen').hide('slow');
    $('div.jeanne').hide('slow');
    $('div.vision').show('slow');
    $('div.beliefs').hide('slow');
    $("a.vision").css('font-weight', 'bold');
    $("a.stephen").css('font-weight', 'normal');
    $("a.jeanne").css('font-weight', 'normal');
    $("a.beliefs").css('font-weight', 'normal');
    return false;
    });*/

});