$(document).ready(function(){
//BEGIN

//Twitter Feed
    $(".twitterFeed").tweet({
        username: "swimwithswain",
        join_text: "auto",
        avatar_size: 48,
        count: 10,
        query: '@swimwithswain',
        loading_text: "loading tweets..."
    });

//Text Counting
	$.fn.textCounting.defaults.lengthExceededClass= "warningClass";
    $(":input[type=textarea]").textCounting({
    	countDirection:'up' 
    });
    
//Flickr Feed
	$(".flickr").flickr({
	api_key: "5940676cdf7bb23ceecbdb7c3463c17a",
	type: "search",
	group_id: "1097346@N21",
	//sort: "date-posted-desc",
	per_page: 30,
	callback: liteboxCallback
	});
	function liteboxCallback(el){
	jQuery(el).litebox({
		nz: "16px", //nav font size
		ns: 5,
		lu: "images/loading.gif", //loading.gif anim
		auto: "",
		stop: "",
		close: "<img src='images/icon_close.gif' style='border:0; margin-top: 5px'>",
		prev: "Previous",
		next: "Next",
		count: false
	});
	}

//Image Hover
$('span.photoButton img').imghover({src: 'images/photoButton02.gif'});

//Image Preloader
$.preloadImages("images/photoButton02.gif", "images/tweetButton02.gif");

//END
});

