$(document).ready(function() {
	//load featured products based on the id and rel of each featured block
	$("#featured div.featured").each(function() {
        $(this).siLoadFeaturedProducts({
            from : $(this).parents('.featuredBlock').attr("id").replace('featured_', ''),
            type : $(this).parents('.featuredBlock').attr("rel")
        });
	});
	//load sale products based on the id and rel of each featured block
    $("#featured div.sale").each(function() {
        $(this).siLoadSaleProducts({
            from : $(this).parents('.featuredBlock').attr("id").replace('featured_', ''),
            type : $(this).parents('.featuredBlock').attr("rel")
        });
	});
	//load featured area images based on the id and rel of each featured block
	$("#featured div.areaImageWrapper").each(function() {
        $(this).siLoadAreaAsset({
            from : $(this).parents('.featuredBlock').attr("id").replace('featured_', ''),
            type : $(this).parents('.featuredBlock').attr("rel")
        });
	});
});

