/**
 * Joseph Hawes
 * Joseph Hawes Web Development
 * http://www.josephhawes.co.uk
 * 05/08/11
 */
$(document).ready(function() {
	//Home Carousel
	var opts = $('div#home-carousel')
	.after('<div class="carousel-nav">')			
	.cycle({
	  speed: 1000,
	  timeout: 5000,
	  pager: 'div.carousel-nav',
	  onPagerEvent: function() { 
	    opts.timeout = 0
		}
	})
	.data('cycle.opts');
	
	//Quick links rollover
	$('div#middle.home div#quick-links div.box').hover(
		function() {
			$('h3', $(this)).animate({
				'padding-bottom' : '112px'
			});
		},
		function() {
			$('h3', $(this)).animate({
				'padding-bottom' : '20px'
			});
		}					
	);
});

