        $(document).ready(function(){

            // Initially hide the form fields if the assosciated radio button is not selected
            if (jQuery("input[@name='enquiry_type']:checked").val()==="general_enquiry") {
                jQuery(".quote-general").show();
            }
            else {
                jQuery(".quote-general").hide();
            }

            $(".quote-website").hide();
            $(".quote-website-descriptive").hide();
            $(".quote-music").hide();
            $(".quote-animation").hide();
            $(".quote-website-video").hide();
            $(".quote-website-animation").hide();
            $(".quote-website-music").hide();

            jQuery('#id_enquiry_type_0').change(function(){
                jQuery('.quote-general').slideDown("fast");
                jQuery('.quote-website').slideUp("fast");
                jQuery('.quote-music').slideUp("fast");
                jQuery('.quote-animation').slideUp("fast");
            });

            jQuery('#id_enquiry_type_1').change(function(){
                jQuery('.quote-general').slideUp("fast");
                jQuery('.quote-website').slideDown("fast");
                jQuery('.quote-music').slideUp("fast");
                jQuery('.quote-animation').slideUp("fast");
            });

            jQuery('#id_enquiry_type_2').change(function(){
                jQuery('.quote-general').slideUp("fast");
                jQuery('.quote-website').slideUp("fast");
                jQuery('.quote-music').slideDown("fast");
                jQuery('.quote-animation').slideUp("fast");
            });

            jQuery('#id_enquiry_type_3').change(function(){
                jQuery('.quote-general').slideUp("fast");
                jQuery('.quote-website').slideUp("fast");
                jQuery('.quote-music').slideUp("fast");
                jQuery('.quote-animation').slideDown("fast");
            });

            jQuery('#id_extra_info_0').change(function(){
                jQuery('.quote-website-descriptive').slideUp("slow");
            });

            jQuery('#id_extra_info_1').change(function(){
                jQuery('.quote-website-descriptive').slideDown("slow");
            });

            jQuery('#id_music_0').change(function(){
                jQuery('.quote-website-music').slideUp("slow");
            });

            jQuery('#id_music_1').change(function(){
                jQuery('.quote-website-music').slideDown("slow");
            });

            jQuery('#id_video_0').change(function(){
                jQuery('.quote-website-video').slideUp("slow");
            });

            jQuery('#id_video_1').change(function(){
                jQuery('.quote-website-video').slideDown("slow");
            });

            jQuery('#id_animation_0').change(function(){
                jQuery('.quote-website-animation').slideUp("slow");
            });

            jQuery('#id_animation_1').change(function(){
                jQuery('.quote-website-animation').slideDown("slow");
            });

            window.onload = function () {
                $("#feature-area-home").slideDown(1000);
            }

        });

