jQuery.extend({
	random: function(X) {
	    return Math.floor(X * (Math.random() % 1));
	},
	randomBetween: function(MinV, MaxV) {
	  return MinV + jQuery.random(MaxV - MinV + 1);
	}
});

$(document).ready(function(){
		var whichText = $.randomBetween(1, 3);
		switch(whichText){
			case 1:
				$("#blurb").html("<p>Fieldstone Partners is not just a private equity and buy-side advisory firm&#8212;we deliver a uniquely-tailored range of solutions for clients.  We call this <a href=\"http://www.fieldstone.com/multiplier\">The Fieldstone Multiplier</a>.</p>");
				break;
			case 2:
				$("#blurb").html("<p>Fieldstone is a buy side and private equity investment firm with over one hundred years of combined experience.</p>");
				break;
			case 3:
				$("#blurb").html("<p>Fieldstone specializes in recapitalizations as an alternative to the status quo or an auction sale process for owner/entrepreneurs.</p>");
				break;
		}
});
