function enableBanner(targetID) {
	var selected;	
	// Transfer the banner
	$(targetID+" .banner-section").each(function(i){
		$(targetID+" .banner-images ul").append($(this));
	})
	
	$(targetID+" .show-details-items").each(function(i){
		$(targetID+" .show-details ul").append($(this));
	})
	
	// Transfer the thumbnails
	$(targetID+" .thumb").each(function(i){
		$(targetID+" .banner-thumbs ul").append($(this));
		$(this).click(function(){
		
			// Move the banner when the thumbnail is clicked
			$(targetID+" .banner-images ul").animate(
			  {marginLeft:-(i*$(targetID+" .banner-section").width())}, 
			  {duration: 600}
			);
			
			$(selected).removeClass("active");
			// Shift to grayscale version when a new thumbnail is selected
			if(selected != $(this)) {
				$(selected).find("span.img").css("background-image", "url("+$(selected).find("span.thumbnail").attr("gs")+")");
			}
			
			// Mark the item as selected
			selected = $(this);
			if(i == 0) {
				$(targetID+" .banner-thumbs h4").css("color", "#fff");
			} else {
				$(targetID+" .banner-thumbs h4").css("color", "");
			}
			
			$(targetID+" .show-details ul li").hide();
			$(targetID+" .show-details ul li:nth-child("+(i+1)+")").show();
			
			$(this).addClass("active");
			$(this).find("span.img").css("background-image", "url("+$(this).find("span.thumbnail").attr("thumb")+")");
			
		});
	});
	
	///////////////////////////////////////////////////////
	// Get the first child and mark it as selected
	$(targetID+" .banner-thumbs .thumb:first-child span.img").css("background-image", "url("+$(targetID+" .banner-thumbs .thumb:first-child span.thumbnail").attr("thumb")+")");
	
	selected = $(targetID+" .banner-thumbs .thumb:first-child");
	$(selected).addClass("active");
	
	if(typeof(selected) !== 'undefined') {
		$(targetID+" .banner-thumbs h4").css("color", "#fff");
		$(targetID+" .show-details ul li:first-child").show();
	}
	
	///////////////////////////////////////////////////////
	// Set the width of whole banner base on the width banner section
	$(targetID+" .banner-images").width($(targetID+" .banner-section").width()*$(targetID+" .banner-section").length);
}

