// JavaScript Document
// home page - (c) copyright 2009 mauro gallo - web creations

window.onload = function() {
		$(document).ready(startHome);
	};

function startHome() {
	startTicker();
}

function startTicker() {
	$("#ticker").vTicker({
	   speed: 500,
	   pause: 20000,
	   showItems: 1,
	   animation: 'fade',
	   mousePause: true
	});
}