$(document).ready(function(){

// easyslider

	$("#main-story > ul > li > .story-inner").css('display', 'block');
	
	$("#main-story").easySlider({
		//auto: true,
		continuous: true,
		pause: 10000
	});
	
	
// scrollpane
/**
	$('.scroll-pane').jScrollPane({
		showArrows:true
	});
**/

	
// lasfm

    $('div#lastfm').lastFM({
        username: 'splintertank',
        apikey: '5d7693c482829cda27f2279b45f65b61',
        number: 10,
        artSize: 'small',
        noart: 'js/engage/noartwork.gif',
        onComplete: function(){
        }
    });

// Twitter

	$(".skullfish").tweet({
		username: "skullfish",
//		join_text: "auto",
		avatar_size: 28,
		count: 10,
//		auto_join_text_default: "we said,",
//		auto_join_text_ed: "we",
//		auto_join_text_ing: "we were",
//		auto_join_text_reply: "we replied to",
//		auto_join_text_url: "we were checking out",
		loading_text: "loading Skullfish's tweets..."
	});
    
	$(".dh-work").tweet({
		username: ["DH_Frank","skullfish"],
		avatar_size: 28,
		count: 10,
		loading_text: "loading DH_Frank's tweets..."
	});
	
	
// Flickr

		jQuery(function(){   
		jQuery("#gallery-litebox").flickr({
			api_key: "98ade76b5bc92cf043f6b0c67848aead",
			type: 'search',
			user_id: '18785770@N00',
			per_page: 14,
			callback: liteboxCallback
		});
	});
	function liteboxCallback(el){
		jQuery(el).litebox({    
			nz: '20px' 
		});
	}
	
	
});

