$(document).ready(function(){
	// random Featured Product
	var featuredProducts = new Array(
	
		'<h4>Featured Product</h4><a href="http://www.usbank.com/cgi_w/cfm/creditcards/prepaid/gift_card.cfm" target="_blank"><img src="/img/other/cards/us-bank.gif" class="cardart" alt="" /></a><p><strong><a href="http://www.usbank.com/cgi_w/cfm/creditcards/prepaid/gift_card.cfm" target="_blank">U.S. Bank</a></strong><br />Give the secure simple gift everybody can use.</p>',
		 
		'<h4>Featured Product</h4><a href="https://www.vanillavisa.com/locateRetailer.html" target="_blank"><img src="/img/other/cards/anne-gedd.gif" class="cardart" alt="" border="0" /></a><p><strong><a href="https://www.vanillavisa.com/locateRetailer.html" target="_blank">Vanilla Visa Gift Card</a></strong><br />Find a location to get your Anne Geddes gift card.</p>'
		
	);	
	$('#featured-product').append(featuredProducts[Math.round(Math.random())*1]);	
});