/* Load Twitter Feed */
$(document).ready(function() {
        $(".tweet").tweet({
            username: "kootenayliving",
            join_text: "auto",
            avatar_size: 16,
            count: 1,
            loading_text: "loading tweets..."
        });
    });
    
    
/* Homepage Slideshow */
$(document).ready(function() {
    $('.slideshow').cycle({
	delay:  2000, 
    speed:  1500,
    random:  1
	});
});

