/**
 * thumbsgenerator.js
 * JQuery code needed to make the AJAX calls to refresh the thumbnails.
 */

// $Id$

//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// define the behavior of the form.
$(document).ready(function(){

	//set the interval at which the listing should be refreshed [every 25 secs]
	setInterval("getFreechats()", 25 * 1000);
});

//>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
// This function will refresh the listing
function getFreechats(){

	var url = $("#fms-base-path").html() + "thumbsgenerator/refresh/" + site_id + "/" + affiliate_id + "/" + program_id + "/" + campaign_id + "/" + rows + "/" + cols + "/" + size;
	$("#thumbs-wrapper").load(url);
}

