$(document).ready(function() {
	$('.box-project').prev().addClass('test');
	setInterval('swapImages()', 5000);
});

function Confrims(){
	if(confirm("Are you sure?")){
		return(true);
	}
	return(false);
}

function swapImages(){
  var $active = $('#myGallery .active');
  var $next = ($('#myGallery .active').next().length > 0) ? $('#myGallery .active').next() : $('#myGallery img:first');
	  $active.fadeOut(function(){
	  $active.removeClass('active');
	  $next.fadeIn().addClass('active');
  });
}
