$(document).ready(function($) {

			$.featureList(
				$("#feature_list .tabs li div.feat"),
				$("#feature_list .output li"), {
					start_item	:	0
				}
			);
			
			$.featureList(
				$("#blogger_list .tabs li div.blogger"),
				$("#blogger_list .output li"), {
					start_item	:	0
				}
			);
			
			$( "#featuredProducts" ).tabs();
			
			$(".homeScroller").each( function() {
				thisID = $(this).parent().attr("id");
				$(this).carouFredSel({
					auto: false,
					prev: $("#"+thisID+"_prev"),
					next: $("#"+thisID+"_next"),
					height: 165,
					width: 765,
					items: {
						visible : 6
					},
					pagination : {
						container       : $("#"+thisID+"_pag"),
						anchorBuilder   : function(nr) {
						    return "<a href=\"#\">"+nr+"</a>";
						}
					},
					padding: 0
				});
			});
			
			
		});
