function theHomepage() {
	//Default to show nothing
	$('div#roselli-law-screen ul li').css({opacity: 0.0});
	$('div#roselli-law-screen').css({opacity: 0.0});
	
	//Bring Up first image
	$('div#roselli-law-screen').animate({opacity: .5}, 15000);
	//Call the rotator function to run the slideshow, 6000 = change to next image after 6 seconds
	setInterval('showtext()',3000);
	
}

function showtext() {	
	$('div#roselli-law-screen ul li.committment').animate({opacity: 1.0}, 3000);
	$('div#roselli-law-screen ul li.resources').animate({opacity: 1.0}, 3000);
	$('div#roselli-law-screen ul li.experience').animate({opacity: 1.0}, 3000);
	$('div#roselli-law-screen ul li.results').animate({opacity: 1.0}, 3000);	
};

$(document).ready(function() {		
	//Load the slideshow
	theHomepage();
});
