// JavaScript Document
var featured_array = new Array();
featured_array[0] = new Array("images/portfolio/frankel_thumb2.jpg","Frankel Staffing Partners", "http://www.frankelstaffing.com");
featured_array[1] = new Array("images/portfolio/murray-motors-thumb2.jpg","Murray Motors", "http://murraymotorsinc.com/dealerfiles/default.asp");
featured_array[2] = new Array("images/portfolio/lake-travis-boat-sales_thumb2.jpg","Lake Travis Boat Sales", "http://www.laketravisboatsales.com/");
featured_array[3] = new Array("images/portfolio/lja_thumb2.jpg","LJA Arms", "http://lja-ar15.com/");
featured_array[4] = new Array("images/portfolio/dms_thumb2.jpg","Direct Mail Services", "http://www.directmailservicesinc.com");

var lastid_featured = "";
var lastdiv_featured = "";
var fadediv_featured = "";

window.addEvent('domready',function(){
	var myTimer = (function(){show_featured(); }).periodical(10000);
	$('div_featured1').setStyles({
			opacity: '0'
		});
	$('div_featured2').setStyles({
			opacity: '0'
	});
	//set first one
	show_featured();
});


function show_featured(){
var idshow = get_featured_id();
var featured_hold = '<div class="project-foto"><a href="' + featured_array[idshow][2] + '" target="_blank">'
	+ '<img src="' + featured_array[idshow][0] + '" border="0" alt="' + featured_array[idshow][1] + '" style="max-width:134px;"></a></div>'
	+ '<div class="names">' + featured_array[idshow][1] + '</div>';

if (lastdiv_featured == "div_featured1"){
	lastdiv_featured = "div_featured2";
	fadediv_featured = "div_featured1";
}else{
	lastdiv_featured = "div_featured1";
	fadediv_featured = "div_featured2";
}
$(lastdiv_featured).set('html',featured_hold);
$(lastdiv_featured).fade('in');
$(fadediv_featured).fade('out');
}



function get_featured_id(){
	var idhold = $random(0, featured_array.length - 1);
	if (idhold == lastid_featured){
		idhold = get_featured_id();
	}
	lastid = idhold;
	return lastid;
}

