// JavaScript Document

<!--
	var banners = new Array(
		'../advertisement/images/Midwest_Ad.gif',
		'../advertisement/images/theClosingOffice.gif',
		'../advertisement/images/Place_Ad.gif',
		'../advertisement/images/headaches.gif'
		);
	var linx = new Array(
		'http://www.mwisinc.com/index.php?option=com_forme&Itemid=81','http://www.the-closingoffice.com','http://www.grwholesale.com/visitor/promote.php','http://www.mwisinc.com/index.php?option=com_content&view=article&id=70&Itemid=118'
                );
	var msg = new Array('','','','','');

	var randomnumber = Math.floor(Math.random()*10)
	
	var current = randomnumber;
										  
	function ads()
	{
		// If not supported then stop running
		if (!document.images) {
			alert('Sorry, your browser does not support javascript.');
			return;
		}
		
		if (current < banners.length - 1)
		{
			// Increment counter
			current++;
		} else {
			// Reset to first image
			current = 0;
		}
		//alert(current);
		document.images['banner'].src = banners[current];
		
		// Pause for 5 seconds before running again
		setTimeout('ads()',4000);
	}
	
	function adClick(m)
	{
		if (msg[current].length != 0) {
			alert(msg[current]);
		}
		// Take action
		//window.location.href = linx[current];
		window.open(linx[current]);
	}
//-->
