var timeout;

$(document).ready(function() {
	timeout = setTimeout(function() {
		$("#hometeaser").fadeOut();
		$("img.homeimage").fadeOut().css("top", 215);
		$("img.homeimage").fadeIn();
	}, 5000);
	
	$("#hometeaser").hover(function() {
		clearTimeout(timeout);
	},
	function() {
		timeout = setTimeout(function() {
			$("#hometeaser").fadeOut();
		}, 5000);	
	});
});
