$(function() {
	imageRotator();
	if(window.location.href.indexOf('?success') != -1) {
    alert('Thank you for your inquiry. Someone will contact you soon.');
  }
});

function imageRotator() {
	if($('#billboard').length > 0) {
		$('#billboard').cycle({
			fx: 'fade',
			speed: 'slow',
			timeout: 5000,
			pause: 1
		});
	}
}

