// JavaScript Document


/* ----- Slideshow ----- */
$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'sliceDown', //sliceDown / sliceDownLeft / sliceUp / sliceUpLeft / sliceUpDown / sliceUpDownLeft / fold / fade / random
		slices:15,
		animSpeed:500,
		pauseTime:5000,
		directionNav:true, //Next & Prev
		directionNavHide:true, //Only show on hover
		controlNav:true, //1,2,3...
		pauseOnHover:true, //Stop animation while hovering
		manualAdvance:false, //Force manual transitions
		beforeChange: function(){},
		afterChange: function(){}
	});
});


/* ----- Twitter Feed ----- */
   $(document).ready(function(){
      $('#rrt').relatedTweets({
         debug:true
         ,from_users:'RedCloudHost'
         ,status:1
         ,realtime:0
         ,n:3
         ,show_avatar:0
         ,show_author:0
      });
   });
