// JavaScript Document

$(document).ready(function() {

	$('#hometop').append($('.slideshow'));
	
	//$('.overlay p').fadeOut();
	
	$('#images').cycle({
		slideExpr: 'div.slide', //Choses what should be used as slides
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed: 2000,  //Transition time
		timeout: 8000, //Delay before each transition 
		next: '#next', // Next link selector
		prev: '#prev', // Prev link selector
		before: function(curr,next,opts) {
			$(curr).find('.overlay p').fadeOut('fast',function() {$(curr).find('.overlayBackground').animate({ height: 0},'fast');}); 
		},
		after: function(curr,next,opts) {
			var overlayHeight = $(next).find('p').height()+20;
			$(next).find('.overlayBackground').animate({ height: overlayHeight},{duration: 'slow',complete:function() {$(next).find('.overlay p').fadeIn('slow');}}); 
		}
	});
	

});
