// JavaScript Document



		$(function() {
			$('#slideshow').cycle({
				fx: 'fade',
				height: '339',
				pager: '#slideshow-nav',
				timeout: 6000,
				slideResize: 0,
				after: function() {
					var link = $(this).data('link');
					if (!link.length === false) {
						$('#container').bind('click', function() {
							window.location.href = link;
						}).addClass('hand');
					}
				},
				before: function() {
					$('#container').unbind('click').removeClass('hand');
				}
			});
		});


