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

// Run our swapImages() function every 7secs
setInterval('swapImages()', 7000);*/

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

setInterval('swapHeaders()', 5000);

$(document).ready(function(){

	$('.smallImgPage').click(function(){

	    $('#bigImg').empty().append($(this).clone());

	});
	
	$('.smallImgImg').click(function(){

		var $smallImgText = $(this).parent().next('.smallImgDesc');

	    $('#bigImg').empty().append($(this).clone());
		$('#bigImgText').empty().append($smallImgText.clone());

	});

});//

