function randomizer(n){
	var randomNumer;
	randomNumer = Math.random() * n;
	randomNumer = Math.floor(randomNumer);
	return randomNumer + 1;
}

var numberOfProducts = 6;
var productLogo;
var productImages;
var productDescription;

switch (randomizer(numberOfProducts)){
	case 1:
		//Blow Off
		productLogo = '<img src="http://www.blowoff.com/products/images/blowOff_logo.gif" width="320" height="1095">';
		productImages = '<img src="http://www.blowoff.com/products/images/stainless1.jpg>';
		productDescription = "Our Blow Off&#8482; line of air dusters and cleaners is specially formulated to clean computers and electronics to prolong performance and longevity";
		break;
	case 2:
		//Lube Job
		productLogo = '<img src="http://www.blowoff.com/products/images/lubeJob_logo.gif" width="200" height="141">';
		productImages = '<img src="http://www.blowoff.com/products/images/carb.jpg" width="181" height="576">';
		productDescription = "Make tough jobs easy to handle with our Lube Job&#8482; line of lubricants. Specially formulated to penetrate and loosen corroded parts";
		break;
	case 3:
		//Stick It
		productLogo = '<img src="http://www.blowoff.com/products/images/stickit_logo.gif" width="200" height="141">';
		productImages = '<img src="http://www.blowoff.com/products/images/mistcanhr.jpg" width="181" height="576">';
		productDescription = "Stick It&#8482; Spray Adhesives come in several great formulas for a variety of uses. All are made with our high quality standards, so you know they'll do the job right.";
		break;
	case 4:
		//Get Off
		productLogo = '<img src="http://www.blowoff.com/products/images/getoff_logo.gif" width="200" height="141">';
		productImages = '<img src="http://www.blowoff.com/products/images/GlassClnr.jpg" width="181" height="576">';
		productDescription = "Get Off&#8482; Cleaners and Degreasers are manufactured with industrial strength ingredients to handle the toughest jobs.";
		break;
	case 5:
		//Get Out
		productLogo = '<img src="http://www.blowoff.com/products/images/getout_logo.gif" width="200" height="141">';
		productImages = '<img src="http://www.blowoff.com/products/images/OdorElim.jpg" width="181" height="576">';
		productDescription = "Get Out&#8482; Odor Eliminator is a specially formulated air treatment that eliminates odors.";
		break;
	case 6:
		//Buff It
		productLogo = '<img src="http://www.blowoff.com/products/images/buffit_logo.gif" width="200" height="141">';
		productImages = '<img src="http://www.blowoff.com/products/images/Stainless_Steel.jpg" width="181" height="576">';
		productDescription = "Buff It&#8482; Stainless Steel Cleaner cleans, polishes and protects in one easy step.";
		break;
}