setTimeout('setup_form();',1000);


function setup_form(){
    //alert("inside");
    $('#small-contact-form #your_name').val('Enter your name').focus(function(){
        if($(this).val()=='Enter your name') $(this).val('');
    });
    $('#small-contact-form #your_email').val('Email Address/Phone No.').focus(function(){
        if($(this).val()=='Email Address/Phone No.') $(this).val('');
    });
    $('#small-contact-form #message').val('Enter your query here').focus(function(){
        if($(this).val()=='Enter your message or question here') $(this).val('');
    });
    $('#small-contact-form input[name="location"]').val('Enter your location').focus(function(){
        if($(this).val()=='Enter your location') $(this).val('');
    });
    
}
//alert("hello");
//window.onload = setup_form();



