// JavaScript Document


/* ----- iPhone ----- */
if ((navigator.userAgent.indexOf('iPhone') != -1) ||  
(navigator.userAgent.indexOf('iPod') != -1)) {  
document.location = "http://www.lincoln-pizza.co.uk/mobile/";  
}


/* ----- Slideshow ----- */
$(window).load(function() {
	$('#slider').nivoSlider({
		effect:'sliceUpDownRight', //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:false, //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:'DominosLincoln'
         ,status:1
         ,realtime:0
         ,n:10
         ,show_avatar:0
         ,show_author:0
      });
   });
