/*
 *
 * jQuery Functions (Homepage)
 * Resto Pub City (2009)
 *
 * Powered by jQuery (http://www.jquery.com)
 * Written by Simon Bouchard (http://www.simonbouchard.com)
 *
*/

$(document).ready(function(){	
		
		/* SHOWCASE */
		$(function() {
			$("#showcase").jCarouselLite({
				visible: 1,
				start: 0,
				vertical: true,
				auto: 5000,
				speed: 1000
			});
		});
		
		/* BACKGROUND */
		$(function() {
			$("#background .images").jCarouselLite({
				btnNext: ".next",
				btnPrev: ".prev",
				visible: 3,
				start: -1,
				auto: 5000,
				speed: 1000
			});
		});
		

});  


