$(document).ready(function(){
													 
	// Image Gallery
	$('.w-gallery span').hide();
	
	$(".w-gallery").hover(
  	function () {
    	$(this).children('span').fadeIn(200);
  	},
  	function () {
    	$(this).children('span').fadeOut(200);
  	}
	);
	
});

// Image Slideshow
function slideSwitch() {
    var $active = $('#hero img.active');

    if ( $active.length == 0 ) $active = $('#hero img:last');

    var $next =  $active.next().length ? $active.next()
        : $('#hero img:first');

    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 0.999}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

$(function() {
    setInterval( "slideSwitch()", 6000 );
});
