﻿$(document).ready(function(){

  $('#slideshow1').cycle({delay: 4000});

	$.ajax({
        url: "services/BasicServices.aspx",
        async: true,
        cache: false,
        type: "POST",
        data: "service=leadsamount",
        dataType: "json",
        success: function(psResponse){
					if (psResponse.status == "OK") {
							$('#newleads').html(psResponse.message);
						}
        }
       });

});