FeaturedProducts = function() {
	return {
		getPage: "http://equestrianetc.com/catalog/index.php?main_page=featured_products",
		html: '',
		init: function(){
			$.post('proxy.php?url=' + FeaturedProducts.getPage, '', 
				function(data, textStatus){
					FeaturedProducts.html = jQuery(data).find("#featuredDefault");
					$("#injectFeaturedProducts").before(FeaturedProducts.html);
				},'html');
		}
	}
}();

$(function(){
	FeaturedProducts.init();
});
