/**
 * Code
 *   => Last Modified : 03rd March 2009
 */

 /*
$(document).ready(
                  function()
                  {
                      if($.isFunction($().cycle))
                      {
                          $('#sidebar div.customer-logos ol').cycle();
                      }
                      if($.isFunction($().hint))
                      {
                          $('.search input:text').hint();
                      }
                  });
*/				  
				  
function LogDownload(file)
{
	pageTracker._trackPageview(file);
	
	$.ajax({
		type: "POST",
		url: "../Methods/Download.ashx?file=" + file,
		data: "",
		success: function(result) {
		},
		error: function(xhr, status, error) {
		}
	});
	
	return true;
}