/*
Copyright (c) 2010 Mediasparx (http://www.mediasparx.com)
Notes: Image rotator. Preloaded included below.
Todo:	- Offset showoff start
		- Nested version
*/

var timerid;

function teaser(container) {

	$(container).each(function() {

		$(this).find(".listRow a").append('<span></span>');

		//Hover Effect for Tooltip
		$(this).find(".listRow").hover(function()
		{
			$(this).closest('.listRow').find(".tplvar-listitem-title-prepend").stop().animate({ top: "0px" }, 500 );
		}
		, function()
		{
			$(this).closest('.listRow').find(".tplvar-listitem-title-prepend").stop().animate({ top: "93px" }, 500 );
		});

	});

}

// Startup
$(function() {

	teaser(".Teaser");

});