// Scripts to make the site work

$(document).ready(function() {
	
	$("#slide").css("overflow","hidden");
	
	$("ul.slides").cycle({
			fx: 'fade',
			pause: '1',
			next: '.next',
			prev: '.prev'
	});
	
	$("#slide").hover(function() {
	
		$("ul.slidenav").fadeIn();
		},
		
				function() {
		$("ul.slidenav").fadeOut();
	
	});
	
});
