/*
Theme Name: TurboMax - OwlTemplates.com
THEME URI: http://OwlTemplates.com/demo/wordpress/turbomax
DESCRIPTION: TurboMax.com is one page fully loaded with jquery - lighbox, fading images, contact form, social network, whole website in slider.
VERSION: 1.0
Author: OwlTemplates.com
Author URI: http://OwlTemplates.com
TAGS:1,  1 to 2 columns,fixed width, web 2.0, jquery, page slider , image fading effect, lightbox , jquery, portfolio lightbox , jquery contact form.
*/

/*
 * 	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:2000,
		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 */


