$(function() {
	// Define Lightbox Areas
	$('.gallery a').lightBox();
	
	// Colour list
	// Places spans between list elements for easy coloured-dot effect
	$('ul.colourlist li').wrapInner('<span></span>');
	
	// Autogrowing Textarea
	$('textarea').autogrow();
	
	// ImageFader
	// Requires #image-fader to be a UL. Will fade between LIs.
	$('#splash_backgrounds').innerfade({ 
		speed: 'slow', 
		timeout: 16000, 
		type: 'sequence', 
		containerheight: '541px'
	}); 
	
	// Sticky Sidebar
	// http://css-tricks.com/scrollfollow-sidebar/
    var $sidebar   = $("#content-left ul"),
        $window    = $(window),
        offset     = $sidebar.offset(),
        topPadding = 15;

    $window.scroll(function() {
        if ($window.scrollTop() > offset.top) {
            $sidebar.stop().animate({
                marginTop: $window.scrollTop() - offset.top + topPadding
            });
        } else {
            $sidebar.stop().animate({
                marginTop: 0
            });
        }
    });
	
	//Quotes Array
	var myQuotes = new Array();
	myQuotes[0] = "Inside your body is a priceless treasure <br />A gift from the eternally generous one. <br />Look for that gift inside of you.  ~ Rumi";
	myQuotes[1] = "Regardless of what stage of life we're in Yoga Practice<br />should serve to bring forth our unique skills, strengths <br />and talents.  It should help us to live with great ease and<br />acceptance.  ~Donna Farhi from Bringing Yoga to Life";
	myQuotes[2] = "The most important dance is the one that happens inside<br />us. Particles of our body are dancing with hundreds of<br />different rhythms and grace. ~ Rumi";
	myQuotes[3] = "Your body is an ocean with hidden treasures<br />Open your inmost chamber and light its lamp.<br />~ Mirabai";
	myQuotes[4] = "I wish I could show you,<br />When you are alone or in darkness<br />The Astonishing light of your own being!<br />~ Hafiz";
	myQuotes[5] = "God Blooms from the shoulder of the Elephant<br />Who becomes Courteous to the Ant<br /> ~ Hafiz";
	myQuotes[6] = "What is this precious love and laughter<br />Budding in our hearts?<br />It is the glorious sound of a soul waking up!<br />~ Hafiz";
	myQuotes[7] = "Less and less do you need to force things,<br /> until finally you arrive at non-action.<br />When nothing is done, nothing is left undone.<br />~ Tao Te Ching";
	myQuotes[8] = "Become so still you hear the <br />blood flowing through your veins<br />~ Mirabai";
	myQuotes[9] = "The impermanence of the body <br />should give us great clarity,<br />Deepening the wonder in our senses and eyes<br />~ Hafiz";
	myQuotes[10] = "Your deepest presence is in every small <br />cell contracting and expanding,<br />the two as beautifully co-ordinated as bird wings.<br />~ Rumi";
	// Generate Random Quote and Output
	var randomQuote = Math.floor(Math.random()*myQuotes.length);
	$("#quote").html(myQuotes[randomQuote])
}); 
