﻿$(document).ready(function() {

    $(".search_unFocus").focus(function() {
        if ($(this).attr("value") == "Search...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#333;");
        }
    });

    $(".search_unFocus").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "Search...");
            $(this).attr("style", "color:#a7a7a8;");
        }
    });





    $(".c_msg").focus(function() {
        if ($(this).attr("value") == "Message...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#454545;");
        }
    });

    $(".c_msg").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "Message...");
            $(this).attr("style", "color:#c4c4c4;");
        }
    });




    $(".c_namn").focus(function() {
        if ($(this).attr("value") == "Name...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#454545;");
        }
    });

    $(".c_namn").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "Name...");
            $(this).attr("style", "color:#c4c4c4;");
        }
    });


    $(".c_foretag").focus(function() {
        if ($(this).attr("value") == "Company...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#454545;");
        }
    });

    $(".c_foretag").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "Company...");
            $(this).attr("style", "color:#c4c4c4;");
        }
    });


    $(".c_telefon").focus(function() {
        if ($(this).attr("value") == "Phone...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#454545;");
        }
    });

    $(".c_telefon").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "Phone...");
            $(this).attr("style", "color:#c4c4c4;");
        }
    });


    $(".c_email").focus(function() {
        if ($(this).attr("value") == "E-mail...") {
            $(this).attr("value", "");
            $(this).attr("style", "color:#454545;");
        }
    });

    $(".c_email").blur(function() {
        if ($(this).attr("value") == "") {
            $(this).attr("value", "E-mail...");
            $(this).attr("style", "color:#c4c4c4;");
        }
    });

    $(".cb1,.cb2,.cb3,.cb4").click(function() {
        tbClassName = $(this).attr("class");
        if ($(".t" + tbClassName).val() == "1") {
            $(".t" + tbClassName).val("0");
            $("." + tbClassName).attr("src", "/templates/pages/mavab/gfx/contact_cb_unchecked.gif");
        }
        else {
            $(".t" + tbClassName).val("1");
            $("." + tbClassName).attr("src", "/templates/pages/mavab/gfx/contact_cb_checked.gif");
        } 
    });

});


