function hideShowRFP() {
	var i=1;
	//Change the class of the next element, if 4 the next element will be 1
	for (i=1;i<=4;i++) {
	   if (jQuery("#RFP-slide .RFP"+i).css("display") == "table-row") {
			jQuery("#RFP-slide .RFP"+i).stop().fadeOut(2000, function () {
				 jQuery("#RFP-slide .RFP"+i).css("display", "none");
				 jQuery("#RFP-slide .RFPROW"+i).css("display", "none");
				 if (i==4) i=0;
         jQuery("#RFP-slide .RFPROW"+(i+1)).css("display", "table-row");
	       jQuery("#RFP-slide .RFP"+(i+1)).stop().fadeIn(2000, function () {     
	        jQuery("#RFP-slide .RFP"+(i+1)).css("display", "table-row");
	       });
	       
			});
			
			setTimeout("hideShowRFP()", 8000);
			return;
		}
	}	
}

function startSlideRFP() {
	setTimeout("hideShowRFP()", 8000);
}