
	$(document).ready(function(){

		$('#slider').cycle({ 
			fx:     'scrollLeft', 
			timeout:  9000,
			next:  '#next',
			prev:  '#prev',
			speed:1000
		});
		
		$("#nav .subnav").hide();
		
		$("#nav li").hover(
		
			function () {
				$(this).find('ul:first').slideDown(200);
			}, 
			function () {
				$(this).find('ul:first').slideUp(200);
			}
			
		);
		
		$(".gallery-item a").fancybox({});
				
	});
	
	function scrollTo(id) {
	
		$('html, body').animate({
			scrollTop: $(id).offset().top
		}, 1000);

	
	}
