﻿$(function() {
	$(".carousel img").css("display", "block");
	$('.carousel').cycle({
		speed								: 1000, 
		timeout							: 6000, 
		fastOnEvent					: 1,
		pager								: '#carouselNav', 
		pagerEvent					: 'mouseover',
		pauseOnPagerHover		: true,
		pagerAnchorBuilder	: function(idx, slide) {
			var link	= $('.carousel a:eq(' + idx + ')').attr('href');
			var title	= $('.carousel a:eq(' + idx + ') span.title').text();
			var desc	= $('.carousel a:eq(' + idx + ') span.desc').text();
			return '<a href="' + link + '">' + title + '<span>' + desc + '</span></a>';
		}
	});
	$(".carouselNav a:last").addClass("last");
	
	$(".carouselNav a").click(function(){
		window.location.href = $(this).attr('href');
	});
});
