﻿/* Contact Form Links */

$(document).ready(function(){ 
    var contactLinks = $('#contactLinks > li a');
        for (i=0;i<=contactLinks.length;i++){
            $(contactLinks[i]).click(function() {
                if (this.id != undefined){
                    var contactForm = this.rel
                    $("#pageContent").load("/contact/" + contactForm + ".asp",
                    
                    
                        function callback() {
                            //$.scrollTo("#pageContent", 800 );
                            return(false);
                        }
                    );            
                return(false);
               }
            });
        } 

  });         
   
/* Contact Form Links  */
