/**
 * @author linux-ubuntu
 */
$(document).ready(function(){
	
	/* If the user's browser supports the Image object, begin image preload */
	if(document.images)
	{
		banner_one = new Image(643, 300);
		banner_two = new Image(643, 300);
		banner_three = new Image(643, 300);
		//banner_four = new Image(643, 300);
		
		banner_one.src = "image/banners/option_one_banners_one.jpg";
		/*banner_two.src = "image/banners/option_one_banners_two.jpg";
		banner_three.src = "image/banners/option_one_banners_three.jpg";
		banner_four.src = "image/banners/option_one_banners_four.jpg";*/
		banner_two.src = "image/banners/option_one_banners_three.jpg";
		banner_three.src = "image/banners/option_one_banners_four.jpg";
	}
	
	/* End image preload */
	
	
	/* Banner images to add to the rotation */	
	//var image_list = ["<a href='http://screenedimagesonline.actiondesigneronline.com/' target='_blank'><img src='image/banners/option_one_banners_two.jpg' alt='LiveDesigner' title='LiveDesigner' /></a>", "<img src='image/banners/option_one_banners_three.jpg' alt='Free Shipping' title='Free Shipping' />", "<img src='image/banners/option_one_banners_four.jpg' alt='Quality Products' title='Quality Products' />", "<a href='index.php?route=common/imagegallery'><img src='image/banners/option_one_banners_one.jpg' alt='Image Gallery' title='Image Gallery' /></a>"];
	var image_list = ["<img src='image/banners/option_one_banners_three.jpg' alt='Free Shipping' title='Free Shipping' />", "<img src='image/banners/option_one_banners_four.jpg' alt='Quality Products' title='Quality Products' />", "<a href='index.php?route=common/imagegallery'><img src='image/banners/option_one_banners_one.jpg' alt='Image Gallery' title='Image Gallery' /></a>"];
	
	/* Put the first(main) image into the div first */
	$("#banner_main_images").html("<a href='index.php?route=common/imagegallery'><img src='image/banners/option_one_banners_one.jpg' alt='Image Gallery' title='Image Gallery' /></a>");
	
	
	/* Rotate the images every 4 seconds */
	var image_index = 0;
	
	$(document).everyTime(4000, function()
	{
		$("#banner_main_images").html(image_list[image_index]);
		if(image_index == (image_list.length -1))
		{
			image_index = 0;
		}
		else
		{
			image_index++;
		}		
	}, 0);
	
		
});

