        
            $(window).load(function() {
              // tweets
              
                	$(".tweets").tweet({
          join_text: "auto",
          username: "EdendorkGAC",
          avatar_size: 0,
          count: 3,
          auto_join_text_default: "we said,", 
          auto_join_text_ed: "we",
          auto_join_text_ing: "we were",
          auto_join_text_reply: "we replied",
          auto_join_text_url: "we were checking out",
          loading_text: "loading tweets..."
	});
                              // Tabs

                //When page loads...
                $(".tabs-wrapper").each(function() {
                    $(this).find(".tab_content").hide(); //Hide all content
                    $(this).find("ul.tabs li:first").addClass("active").show(); //Activate first tab
                    $(this).find(".tab_content:first").show(); //Show first tab content
                });
                
                
	
                //On Click Event
                $("ul.tabs li").click(function(e) {
                    $(this).parents('.tabs-wrapper').find("ul.tabs li").removeClass("active"); //Remove any "active" class
                    $(this).addClass("active"); //Add "active" class to selected tab
                    $(this).parents('.tabs-wrapper').find(".tab_content").hide(); //Hide all tab content

                    var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
                    $(this).parents('.tabs-wrapper').find(activeTab).fadeIn(); //Fade in the active ID content
		
                    e.preventDefault();
                });
	
                $("ul.tabs li a").click(function(e) {
                    e.preventDefault();
                })
            });
            


