$(document).ready(function()
{
	$('select.select-type1').customSelect();
	$(".tabber").each(function()
	{
		var thisTabber = $(this);
		if (thisTabber.find(".tabs li.selected").length == 0)
			thisTabber.find(".tabs li:first").addClass("selected");
		
		$(thisTabber.find(".tabs li.selected a").attr("href")).show();
		
		thisTabber.find(".tabs li a").click(function()
		{
			thisTabber.find(".tabs li.selected").removeClass("selected");
			thisTabber.find(".tab").hide();
			$(this).parent().addClass("selected");
			$($(this).attr("href")).show();
			
			return false;
		});
	});
	
	$('.dresses-slider').jcarousel({
        scroll: 1,
		  wrap: "circular"
	});
});
