﻿$(function ()
{
	createShowcaseGallery();
});

function createShowcaseGallery()
{
	$('#showcaseGallery').empty().append('<a class="colorbox" href="/images/Showcase/04.jpg" rel="shwGal" title="This is the 1st image">Showcase Gallery</a>');
	$('#showcaseGallery').append('<a class="colorbox hidden" href="/images/Showcase/05.jpg" rel="shwGal" title="This is the 2nd image">Showcase Gallery</a>');
	$('#showcaseGallery').append('<a class="colorbox hidden" href="/images/Showcase/06.jpg" rel="shwGal" title="This is the 3rd image">Showcase Gallery</a>');

	$("#showcaseGallery a").colorbox(
	{
		slideshow: true,
		transition: 'fade',
		speed: 2000,
		slideshowSpeed: 5000,
		slideshowStop: 'pause',
		slideshowStart: 'play',
		overlayClose: false,
		current: '{current} of {total}'
	});
}
