	$(document).ready(function() {

			$(".topphoto").jCarouselLite({
				btnNext: ".next",
				btnPrev: ".prev",
				visible: 4,
				mouseWheel: true
			});
			
		
			$("a.zoom").fancybox();

			$("a.zoom1").fancybox({
				'overlayOpacity'	:	0.7,
				'overlayColor'		:	'#FFF'
			});

			$("a.zoom2").fancybox({
				'zoomSpeedIn'		:	500,
				'zoomSpeedOut'		:	500
			});
			
			$('.topmenu ul li').hover(
				function() {
					$(this).addClass("active");
					$(this).find('ul').stop(true, true);
					$(this).find('ul').slideDown();
				},
				function() {
					$(this).removeClass("active");
					$(this).find('ul').slideUp('slow');
				}
			);


		});
	

