/*	Random Features */

var feature = new Array(	
	new Array("fp-peas", "fp-pea-text", "peas", "<img src=\"images/i-pea.jpg\" id=\"fp-pea-img\" height=\"79\" width=\"958\" alt=\"Del Monte\" />"),	
	new Array("fp-corn", "fp-corn-text", "corn", "<img src=\"images/i-corns.jpg\" id=\"fp-corn-img\" height=\"161\" width=\"958\" alt=\"Del Monte\" />")
);

var j;
j=parseInt(Math.random()*feature.length);
j=(isNaN(j))?0:j;

var currentFeature = "<div id='" + feature[j][0] + "'><h2 id=\"fp-stretch\">Looking to stretch your food dollars?</h2><p id=" + feature[j][1] + "><a href='recipes.aspx'>When you pick Del Monte " + feature[j][2] + " over the leading frozen brand, you get a whole lot more for the same price without sacrificing an ounce of quality, taste or nutrition.</a></p>" + feature[j][3] + "</div>";

