// JavaScript Document

$(document).ready(function() {
	$(function() {
		$('#banner').cycle({
			fx: 'fade',
			speed: 2000,
			pause: 1,
			next: '#imgNext',
			prev: '#imgPrev',
			pager: '#imgNum', 
			timeout: 8000,
			pauseOnPagerHover: 1
		});
	});
});


