/*
 * gets hot prod content
 */
function get_hot_prod_content(pnum) 
{
	
	new Ajax.Updater('',"index.php?id=25", 
	{ 
		method: "post",
		parameters: 
		{
			mode: 'get_hot_prod_content',
			pnum: pnum
		},
		onSuccess: function(transport) 
		{
			if(transport.responseText) 
			{
				$('ajax_contentRotator').innerHTML = transport.responseText;
			}
		}
	});
}// end


