﻿jQuery(

	function() {
        $("a.ajaxLink").click(function() {
        
            var URL
		    if (this.rel.indexOf("contact") > -1) {
		        URL = "/contact_stub.aspx?form=contact&recipient=" + this.rel.substring(this.rel.indexOf("_")+1, this.rel.length);
		    }

		    parentDiv = document.getElementById(this.rel);
		    
		    var y = hansonDodge.getRealTop(this);
		    
		    if (parentDiv.style.display == "block") {
		        parentDiv.style.display = "none";
				jQuery('select').css('visibility', 'visible');
		        this.innerHTML = this.title;
		    } else {
		        parentDiv.style.top = (y - 10) + "px";
				jQuery('select').css('visibility', 'hidden');
		        parentDiv.style.display = "block";
		        this.innerHTML = "Hide Contact Form";
		        
		        formInject(URL,this.rel);
		    }

            return false;
        });
	}

    

);
