/*------------------------------------------------------------------
[JQuery Homepage]
Copyright:		Chillingo 2009
Client:			Chillingo
Project:		Chillingo Website
Created By: 	Daniel Cork - Corking Design 
URL:			http://corkingdesign.co.uk
-------------------------------------------------------------------*/
jQuery.noConflict();
var $j = jQuery;
$j(document).ready(function() {
	//Pagination
	$j("#NewsFeed div").quickpaginate({ 
		perpage: 1, 
		showcounter: true, 
		pager : $j("#NewsPagination") 
	});

	//Feature Slider
	$j('#FeaturedContent').loopedSlider({
		container: '.container', // Class or ID of main container
		slides: '.slides', // Class or ID of slide container
		pagination: '.pagination', // Class or ID of pagination container
		containerClick: false, // Click container for next slide
		autoStart: 20000, // Set to positive number for auto start and interval time
		restart: 0, // Set to positive number for restart and restart interval
		slidespeed: 250, // Speed of slide animation
		fadespeed: 250, // Speed of fade animation
		autoHeight: false // Set to positive number for auto height and animation speed
	});
});