function doFeaturedGiftBaskets(){
	// to add new baskets, simply follow the existing structure - eg: basket[x]="item"
	// each basket should be on a single line.
	// if a basket includes a " it will be required to put a backslash \ in front of it, otherwise it will give an error.
	// if a basket is added and/or removed, it will be required to update the equation random_num below.
	basket = new Array
	basket[1]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_chocolate_dream.jpg\" alt=\"Chocolate Dream Gift Basket\" title=\"Chocolate Dream Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[2]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_defrost.jpg\" alt=\"Defrost Gift Basket\" title=\"Defrost Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[3]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_great_escape.jpg\" alt=\"Great Escape Gift Basket\" title=\"Great Escape Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[4]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_kitchen_goddess.jpg\" alt=\"Kitchen Goddess Gift Basket\" title=\"Kitchen Goddess Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[5]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_perf_houseguest.jpg\" alt=\"Perfect Houseguest Gift Basket\" title=\"Perfect Houseguest Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[6]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119l\"><img src=\"images/giftbaskets/gb_perf_houseguest_wbag.jpg\" alt=\"Perfect Houseguest Gift Basket with Tote Bag\" title=\"Perfect Houseguest Gift Basket with Tote Bag\" width=\"160\" height=\"160\" /></a>"
	basket[7]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_simmer_down.jpg\" alt=\"Simmer Down Gift Basket\" title=\"Simmer Down Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[8]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_sugar_plum_chum.jpg\" alt=\"Sugar Plum Chum Gift Basket\" title=\"Sugar Plum Chum Gift Basket\" width=\"160\" height=\"160\" /></a>"
	basket[9]="<a href=\"http://www.shopwhitefish.ca/index.php?main_page=index&cPath=119\"><img src=\"images/giftbaskets/gb_upscale_essentials.jpg\" alt=\"Upscale Essentials Gift Basket\" title=\"Upscale Essentials Gift Basket\" width=\"160\" height=\"160\" /></a>"
	
	// in the code below, the number that is being multiplied should be one less than the number of baskets in the list above.
	random_num = (Math.round((Math.random()*8)+1))
	
	document.write(basket[random_num]);
}