// JavaScript Document

jQuery.noConflict();

jQuery(document).ready(function() {
	
	// Slideshow
	jQuery('#slideshow li:first').show();
	jQuery('#slideshow li:first p').css({opacity:.85});
	jQuery('#slideshow li:first p').animate({top:330}, 300);
	
	setInterval(function() {
						 
		var current = jQuery('#slideshow li.show');
		var next = (current.next().length == 0) ? jQuery('#slideshow li:first') : current.next();
		
		current.find('p').animate({top:360}, 300, function() {
		
			current.fadeOut(1000, function() {
				current.removeClass('show');
			});
			
		});
		
		next.fadeIn(1000, function() {
			
			next.addClass('show');
			next.find('p').css({opacity:.85});
			next.find('p').animate({top:330}, 300, function() {
			});
			
		});
		
	}, 7000);
	
	// Project Gallery
	jQuery('.gallery').before('<h3 class="gallery-title">Project Gallery</h3>');

});

