 	// JavaScript Document

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array(); // do not change this
var theDescription = new Array();

var bottomPic1 = new Array();
var bottomPic2 = new Array();
var bottomPic3 = new Array();

var bottomPic1Link = new Array();
var bottomPic2Link = new Array();
var bottomPic3Link = new Array();
// To add more image files, continue with the


	theImages[0] = 'pics/pic_fastfacts1.png'
	theImages[1] = 'pics/pic_fastfacts2.png'
	theImages[2] = 'pics/pic_fastfacts3.png'	
	theImages[3] = 'pics/pic_fastfacts4.png'
	theImages[4] = 'pics/pic_fastfacts5.png'
	theImages[5] = 'pics/pic_fastfacts6.png'
	theImages[6] = 'pics/pic_fastfacts7.png'
	theImages[7] = 'pics/pic_fastfacts8.png'
	
	theDescription[0] = 'Nearly 2,000 incidents of burglary are reported in Lincoln, Nebraska every year.'
	theDescription[1] = 'The tornado activity for the Lincoln area is 178% higher than the national average.'
	theDescription[2] = 'Approximately 2,000 incidents of fire are reported in Lincoln every year.'
	theDescription[3] = 'In 2009, nearly $3,000,000 was reported lost in fraudulent home insurance claims in Nebraska.'
	theDescription[4] = 'State courts continually hold that it is the policy holder’s responsibility to make sure that their property and belongings are adequately insured.'
	theDescription[5] = 'By doing a thorough home inventory through Insured Image, customers can potentially claim 60% more items after a devastating loss than without an inventory.'
	theDescription[6] = 'A typical homeowner policy only covers belongings up to 50% of the value of the policy. A home inventory can guarantee you an adequate insurance policy.'
	theDescription[7] = '78% of insurance fraud in Nebraska is based on fraudulent property and casualty claims.'
	
	
	//bottom pictures
	bottomPic1[0] = 'pics/button_thefacts.png'
	bottomPic1[1] = 'pics/button_easysteps.png'
	bottomPic2[0] = 'pics/button_whatyou.png'
	bottomPic2[1] = 'pics/button_youquestion.png'
	bottomPic3[0] = 'pics/button_protectfam.png'
	bottomPic3[1] = 'pics/button_callnow.png'
	
	//bottom picures link
	bottomPic1Link[0] = "articles.html";
	bottomPic1Link[1] = "articles_6.html"
	bottomPic2Link[0] = "services_home_inventory.html"
	bottomPic2Link[1] = "faq.html"
	bottomPic3Link[0] = "articles_1.html"
	bottomPic3Link[1] = "contactus.php"

	// do not edit anything below this line

	var j = 0
	var p = theImages.length;
	var whichImage = Math.round(Math.random()*(p-1));
	function showImage()
	{
		document.write('<img src="'+theImages[whichImage]+'">');
	}
	
	function showDescription()
	{	
		document.write('<p style="margin:0 0 0 5px;" class="grayfont bt_10">'+theDescription[whichImage]+'</p>');
	}
	
	
	//bottom images
	var bt1 = bottomPic1.length;
	var bt2 = bottomPic2.length;
	var bt3 = bottomPic3.length;
	
	var whichThumb1 = Math.round(Math.random()*(bt1-1));
	var whichThumb2 = Math.round(Math.random()*(bt2-1));
	var whichThumb3 = Math.round(Math.random()*(bt3-1));
	function showBottomPic()
	{
		document.write('<a href="'+bottomPic1Link[whichThumb1]+'" onfocus="this.blur();"><img src="'+bottomPic1[whichThumb1]+'"/></a>');
	}
	
	function showBottomPic2()
	{
		document.write('<a href="'+bottomPic2Link[whichThumb2]+'" onfocus="this.blur();"><img src="'+bottomPic2[whichThumb2]+'"/></a>');
	}
	
	function showBottomPic3()
	{
		document.write('<a href="'+bottomPic3Link[whichThumb3]+'" onfocus="this.blur();"><img src="'+bottomPic3[whichThumb3]+'"/></a>');
	}
	
	
