/*
Theme Name: Cleartalk - Cleartalk.net
THEME URI: http://cleartalk.net
DESCRIPTION: Cleartalk.net is home of your Jackson Tennessee home for Cleartalk Wireless. Providing Phones and wireless service throughout west Tn.
VERSION: 1.0
Author: Cleartalk.net
Author URI: http://cleartalk.net
TAGS:1,  Wireless Phones, Jackson Tennessee Wireless, Cell Phones Jackson Tn
*/

/*
 * 	Frontpage Showcase
 */

/* fading image starts */
$(window).load(function()
{
	//this is intended to wait for all the images to load before running the slideshow
	init_slideshow()
})

init_slideshow = function()
{
	$('#slides').cycle({
		fx:'fade',
		timeout:4000,
		next:'#next',
		prev:'#prev',
		after:update_slide_caption,
		before:fade_slide_caption,
		auto: false
	})
}

fade_slide_caption = function(next, previous)
{
	caption_container = $('#project_caption')
	caption_container.fadeOut('fast')
}

update_slide_caption = function(next, previous)
{
	caption_container = $('#project_caption')

	caption = $('span.slide_caption', previous)
	caption_container.fadeIn('fast')
	caption_container.html(caption.html())
	
}

/* fading image ends */


