$(window).load(function() {
	$('#slideshow div:first').fadeIn(1500, function() {
		$('#slideshow').cycle({
			fx: 'scrollHorz',
			pager: '#nav',
			pagerAnchorBuilder: function(idx, slide) {
				return '<div><a href="#">&nbsp;</a></div>';
			}
		});
	});
});

$(document).ready(function() {
	$('#slideshow').hover(
		function () {
			if ($(this).find('p').css('display') == 'block')
				return;
			
			$(this).find('p').css('display', 'block');
		}, 
		function () {
			if ($(this).find('p').css('display') == 'none')
				return;
		
			$(this).find('p').css('display', 'none');
		}
	);
});
