
$(document).ready(function() {

	// Page Scroller
	$('a[href=#top]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});	
	
	// Scrollable
	$("#browsable")
	.scrollable({
		speed: 800,
		size: 4
	}).circular().navigator().autoscroll({autoplay: true, steps:4, interval:10000});
			
});

$(function() { 
		   	
	// Tabs 
    $("#latest ul.tabs")
	.tabs("#latest div.panes > div", {
		initialIndex: 1
	}); 	
	
	// Featured Work Homepage
	$('.featured ul.content')
	.before('<div id="featured_tabs">')
	.cycle({ 
    	fx:     'fade', 
    	speed:   1000, 
   		timeout: 5000, 
		delay:   4000,
    	pause:   1,
		pager:  '#featured_tabs' 
	});
		
	// Work Detail Page
	$('#work_image .slides')
	.before('<div id="featured_tabs">')
	.cycle({ 
    	fx:     'fade', 
    	speed:   1000, 
   		timeout: 5000, 
		delay:   4000,
    	pause:   1,
		pager:  '#featured_tabs'
	});
	
});

$(document).ready(function(){
    $(".tweet").tweet({
        username: "OrganicDigital",
        count: 3,
        loading_text: "Twitter appears to be busy, please wait. Loading..."
    });
});