jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    $(document).ready(function(){
        $(".tweet").tweet({
            username: ["metanymweb", "Mark_Metanym", "MetanymLincoln", "cjames0", "lisa_metanym", "MetanymSocMedia"],
            join_text: "auto",
            avatar_size: 40,
            count: 3,
            auto_join_text_default: "we said,", 
            auto_join_text_ed: "we",
            auto_join_text_ing: "",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
        });
    });

});

jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    $(document).ready(function(){
        $(".tweetlong").tweet({
            username: ["metanymweb", "Mark_Metanym", "MetanymLincoln", "cjames0"],
            join_text: "auto",
            avatar_size: 40,
            count: 25,
            auto_join_text_default: "we said,", 
            auto_join_text_ed: "we",
            auto_join_text_ing: "",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
        });
    });

});

jQuery(document).ready(function($) {
    // Contact form code for GOT site
    
	    $(document).ready(function(){
	    
	    
	  	$("#contact-form-buttons a").click(function(){
    		$(this).toggleClass("not-selected");
		});
	
		$("#telephone-systems").show();
		 		$("#telephone-systems-button").click( function(e) {
					e.preventDefault();
		    		$("#telephone-systems").slideToggle();
		 });
		 
		 $("#landlines").show();
		 		$("#landlines-button").click( function(e) {
					e.preventDefault();
		    		$("#landlines").slideToggle();
		 });
		 
		 $("#broadband").show();
		 		$("#broadband-button").click( function(e) {
					e.preventDefault();
		    		$("#broadband").slideToggle();
		 });
		 
		 $("#mobiles").show();
		 		$("#mobiles-button").click( function(e) {
					e.preventDefault();
		    		$("#mobiles").slideToggle();
		 });

		 $("#voip").show();
		 		$("#voip-button").click( function(e) {
					e.preventDefault();
		    		$("#voip").slideToggle();
		 });
		 
	
    });

});
