$(document).ready(function()
{
	
	var baseurl = "http://" + document.location.host + "/";
	$.getScript(baseurl + 'marketing/get_testimonials.php?count=' + number_of_testimonials, function(data)
	{
		var super_testimonials, testimonial, testimonials, markup, testimonial_length, testimonial_content;
		super_testimonials = data.split("||||");

		markup ="<div id='testimonial_effect'>";
				
		for (var i=0;i<super_testimonials.length;i++)
		{
			testimonial= super_testimonials[i].split("||");
			testimonial_length = testimonial[1].length;
			
			if(testimonial_length > 280)
			{
				testimonial_original = testimonial[1].substring(0,280);
				testimonial_content = testimonial_original.substring(0, 280);
			}
			else
			{
				testimonial_content = testimonial[1];
			}

			markup += "<p><font> &#8220 </font>"+ testimonial_content +"<font> &#8221 </font><br/><br/>";
			markup += "<strong>"+testimonial[2]+ "</strong><br/>"+testimonial[3] + "</p>";
		}
		
		markup +="</div>";
		$("#" + testimonial_div_id).html(markup);
		$('#testimonial_effect').cycle({
    fx:     'scrollDown',
	speed:  1000 ,
	timeout:  6000, 
    random:  1
});
	});
	
});


