function loadFeaturedProducts() {
	
  $('#rotate div').fadeOut('slow', function() {
  	
    $.get("ajaxprod.php", {fooo: Math.random()}, function(data) {
  	   $('#rotate div').html('<p>' + data + '</p>');
    });  	
  	
    $('#rotate div').fadeIn('slow', function() {  	
      setTimeout("loadFeaturedProducts()", 6000);
    });
  }); 
}


$(document).ready(function() {
	
	$('#rotate').html('<h3>Featured Products</h3><div></div>');
	$('#rotate').addClass('ajax');
	
  loadFeaturedProducts();
});
