﻿$(document).ready(function ($) {
	$('#marquee .slide').each(function (i) {
		if ($(this).find('a').length > 0) {
			$(this).css('cursor', 'pointer').click(function () {
				window.location = $(this).find('a').attr('href');
			});
		}
	});
	if ($('#marquee .slide').length > 1) {
		$('#marquee').before('<div id="marquee-nav" />');
		$('#marquee').cycle({ fx: 'fade', pager: '#marquee-nav', pause: 1, speed: '300', timeout: '5000' });
	}

});
