// header template
function GAOTD_Ticker_Header ()
	{
// edit this to change ticker presentation
		var Header = '\n';
		Header += '<div id="ga_block">\n';
		Header += '<div id="ga_logo"><img src="http://www.giveawayoftheday.com/images/ga-logo-small.gif" width="200" height="28" alt="Giveaway of the Day" /></div>\n';
		return Header;
	}

// footer tempate
function GAOTD_Ticker_Footer ()
	{
// edit this to change ticker presentation
		var Footer = '</div>\n'
		return Footer;
	}

// body template
function GAOTD_Ticker_Body (ID, Ticker_Year, Ticker_Month, 
		Ticker_Day, 
		Ticker_Title,
		Ticker_Content,
		Ticker_Excerpt,
		Ticker_Price,
		Ticker_File_Size,
		Ticker_Sys_Req,
		Ticker_Days_Left,
		Ticker_Hours_Left,
		Ticker_Minutes_Left
		)
	{
// edit this to change ticker presentation
		var Item = '<div id="ga_title" style="font: normal 90% Tahoma, sans-serif"><a href="http://www.giveawayoftheday.com" style="text-decoration: none">Every day we offer <strong>licensed</strong> software you\'d have to buy otherwise, for <strong>free</strong>! Today\'s giveaway is <strong>';
		Item += Ticker_Title;
		Item += '</strong>.</a></div>';
		Item += '<div id="ga_text"><a href="http://www.giveawayoftheday.com" style="display: block; text-decoration: none; color: #000000; text-align-left">';
		Item += Ticker_Content;
		Item += '<p style="background-color: #DCEADB; padding: 0.2em; text-align: center; clear: both">The program is available for ' + Ticker_Price + ', but is <strong>free</strong> for the visitors of ' + gaotd_SiteName + ' today.</p>';
		Item += '</a></div>';
		return Item;
	}

