
/******************************************************************************
 *
 *	PROJECT: Flynax Classifieds Software
 *	VERSION: 3.2
 *	LISENSE: FL04125EUX5I - http://www.yourdomain.com/license-agreement.html
 *	PRODUCT: Real Estate Classifieds
 *	DOMAIN: test.com
 *	FILE: HOME.INC.PHP
 *
 *	This script is a commercial software and any kind of using it must be 
 *	coordinate with Flynax Owners Team and be agree to Flynax License Agreement
 *
 *	This block may not be removed from this file or any other files with out 
 *	permission of Flynax respective owners.
 *
 *	Copyrights Flynax Classifieds Software | 2010
 *	http://www.yourdomain.com/
 *
 ******************************************************************************/

if (photos.length > 1)
{
	$(document).ready(function(){
		$('#slideshow_stop').click(function(){ action = false; clearTimeout(timeOut); });
		$('#slideshow_start').click(function(){ action = true; slideRandom(); });
		
		timeOut = setTimeout('slideRandom()', pause);
	});
	
	var slideRandom = function(){
		if (!action)
		{
			return false;
		}
		
		clearTimeout(timeOut);

		if ((photos.length) == item+1)
			var nitem = 0;
		else
			var nitem = item+1;
		
		$('#a_dom').append('<img id="load_img_'+nitem+'" style="width: 230px;display: none;" src="'+src+photos[nitem]+'" alt="" />');

		$('#load_img_'+nitem).load(function(){
			$('#div_dom').fadeOut('normal', function(){
				$('#load_img_'+item).remove();
				$('#load_img_'+nitem).show();
				$('#div_dom').fadeIn('slow');
				
				if ((photos.length-1) == item)
					item = 0;
				else
					item++;
				
				$('#slideshow_nav').slideDown('slow');
						
				timeOut = setTimeout('slideRandom()', pause);
			});
		});
	}
}
