// Establish colorbox variables for the hachette template
	$(document).ready(function(){
		$("a[rel='gallery']").colorbox({slideshow:true});	
	});


// Establish twitter feed
    $(document).ready(function(){
        $(".tweet").tweet({
            username: "SarraManning",
            join_text: "auto",
            avatar_size: 32,
            count: 5,
            auto_join_text_default: "Sarra Manning said,", 
            auto_join_text_ed: "Sarra Manning",
            auto_join_text_ing: "Sarra Manning was",
            auto_join_text_reply: "Sarra Manning replied to",
            auto_join_text_url: "Sarra Manning was checking out",
            loading_text: "loading tweets..."
        });
    });


// Enable google feed API, remember to insert your correct API number into the index page, enter your rss feed here
    $(document).ready(function() { 
     $('#feeds').gFeed({  
        url: 'http://sarramanning.blogspot.com/feeds/posts/default'});     
	}); 


// Initiate hachette accordion plugin
	$(function() {
		$("#accordion").accordion({
			autoHeight: false,
    		alwaysOpen: false, 
    		active: false,
    		animated: false
		});
	});

