$(document).ready(function(){
													 
// ---------------------------------------------------------
// Tabs
// ---------------------------------------------------------
$(".tabs").each(function(){

		$(this).find(".tab").hide();
		$(this).find(".tab-menu li:first a").addClass("active").show();
		$(this).find(".tab:first").show();

});

$(".tabs").each(function(){

		$(this).find(".tab-menu a").click(function() {

				$(this).parent().parent().find("a").removeClass("active");
				$(this).addClass("active");
				$(this).parent().parent().parent().parent().find(".tab").hide();
				var activeTab = $(this).attr("href");
				$(activeTab).fadeIn();
				return false;

		});

});


// ---------------------------------------------------------
// Toggle
// ---------------------------------------------------------

$(".toggle").each(function(){

		$(this).find(".box").hide();

});

$(".toggle").each(function(){

		$(this).find(".trigger").click(function() {

				$(this).toggleClass("active").next().stop(true, true).slideToggle("normal");

				return false;

		});

});


});



$(window).load(function(){

// ---------------------------------------------------------
// Headings
// ---------------------------------------------------------


$('h3').each(function() {
	var heading_width = $(this).width();
	$(this).wrapInner('<span class="heading-wrap" />');
	var text_width = $(this).find('.heading-wrap').width()+24;
	var border_width = Math.round((heading_width-text_width)/2);
	$(this).append('<span class="border-l"></span><span class="border-r"></span>');
	$(this).find('.border-l, .border-r').animate({'width': border_width});
});

})
