// JavaScript Document

$(document).ready(function() {

	$("#textshow").css("overflow", "hidden");
	
	$("ul#texts").cycle({
	fx: 'fade',
	pause: 1,
	prev: '#prev',
	next: '#next'
});

$("#textshow").hover(function() {
	$("ul#nav").fadeIn();
	},
		function() {
	$("ul#nav").fadeOut();
	});

	});
   