jQuery(document).ready(function($)
{
	var gallery = $('ul.thumbs').homepageGallery({ 
		animationtype: 'fade', 
		speed: 'normal', 
		timeout: '7000', 
		type: 'sequence', 
		containerheight: 'auto'
	});
	
	// initialise the gallery to play
	gallery.play();
	
	// hide the css
	$('a.pauseButton').show();
	$('a.playButton').hide();

	/**************** Event handlers for custom next / prev page links **********************/
	$('a.prevArrow').live('click',function(e)
	{
		gallery.gotoPrev( );
		

		// pause
		gallery.pause();
		$('a.pauseButton').hide();
		$('a.playButton').show();

		e.preventDefault();
	});

	$('a.nextArrow').live('click',function(e)
	{
		gallery.gotoNext( );
		// pause
		gallery.pause();
		$('a.pauseButton').hide();
		$('a.playButton').show();
		
		e.preventDefault();
	});

	$('a.pauseButton').live('click',function(e)
	{
		gallery.pause();
	
		// hide the css
		$('a.pauseButton').hide();
		$('a.playButton').show();
		
		e.preventDefault();
	});

	$('a.playButton').live('click',function(e)
	{
		gallery.play();
		// hide the css
		$('a.pauseButton').show();
		$('a.playButton').hide();
		e.preventDefault();
	});
});



