﻿/// <reference path="jquery-1.4.1-vsdoc.js" />

$(document).ready(function(){
    //alert('London Baby Equipment Hire Company');
    

    // If JavaScript is enabled then add a new button to hide/show the form button:
    $('<input type="button" id="toggleFormButton" value="Show" />')
        .insertBefore('#contactForm');
    
    // If JavaScript is enabled then hide the form by default:    
    $('#contactForm').hide();
    
    // If JavaScript is enabled then button will be toggled to show/hide
    // the form.
    $('#toggleFormButton').click(function() {
        $('#contactForm').toggle();
        
        if ($('#contactForm').is(':visible')) {
            $(this).val('Hide');
        } else {
            $(this).val('Show');
        }
    });

//    $('#toggleFormButton').click(function() {
//        $('#contactForm').toggle('slow');
//        
//        if ($('#contactForm').is(':visible')) {
//            $(this).val('Hide');
//        } else {
//            $(this).val('Show');
//        }
//    });
    
    
});


