$(document).ready(function(){
	//Button UI.
	$(".button").button();
	
	//Check for banner click.
	$(".banner_item").click(function(){
		//Register banner click.
		$.post("/", { name:"register_banner_click", id:$(this).data("id") });
	});
	
	//Sponsor carousel.
	$("#sponsors").carouFredSel({
		width				: 960,
		height				: 125,
		auto:{
			items           : 1,
	        duration        : 4500,
	        easing          : "linear",
	        pauseDuration   : 0,
	        pauseOnHover    : "immediate"
		},
		items:{
			width			: 200,
			height			: 125,
			visible			: 5
		}
	}); 
});

