$(function()
{

			$(".image-box .text").hide();
		$(".image-box:eq(0) .text").show();
		
		$(".image-box .image").mouseover(function(){
				$(".image-box .text").hide();
			$(this).next(".text").fadeIn("fast");
		});
		
		$(".image-box .text").mouseout(function(){
			$(this).fadeOut("fast");
		});
		
		$('#slideshow').cycle({
			fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
	

		/* Dropdowns */
		
		$("#nav li ul").hide();
		
		$("#nav li").mouseover(function(){
			$("#nav li a").removeClass("hover");
			$(this).find("a:first").addClass("hover");
			$(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn("200");

		});
		
		$("#nav li").mouseout(function(){
			$(this).find('ul:first').css({visibility: "hidden"});
			$(this).find("a:first").removeClass("hover");
			
		});

		/* End Dropdowns */

});
