$(document).ready(function(){ 
  // jQuery stuff here 
  $('#superfish').supersubs({minWidth: 10, maxWidth: 30, extraWidth: 1}).superfish({delay: 800, autoArrows: false });

  $('#flashhome').flash({
	src: '/wp-content/themes/mills/images/flash/homebanner.swf',
	width: 796,
	height: 200,
	wmode: 'transparent',
	loop: 'true',
	quality: 'high'
  });

  $('#flashtestimonials').flash({
	src: '/wp-content/themes/mills/images/flash/testimonials.swf',
	width: 800,
	height: 109,
	wmode: 'transparent',
	loop: 'true',
	quality: 'high'
  });

  $('.product').corner('keep');

//  $('#test1').

	setInterval("changeTestimonial('#test1')", 15000);
	setTimeout("setInterval(\"changeTestimonial('#test2')\", 15000)", 7500);

});


function changeTestimonial(element) {

	var randomnumber=Math.floor(Math.random()*99999)

	$(element + ' > *').fadeOut();
	
	$.get("http://www.millscom.com/",
	{rand:randomnumber},
	function(returned_data) {
		$(element).empty().hide().html(returned_data).fadeIn();
	});
}
