document.documentElement.className = 'js'; // hides FOUC
var $j = jQuery.noConflict();
	
	$j(function() {
	
		$j("#blog").tabs({
			panelTemplate: '<div class="box"></div>',
			ajaxOptions: {
				error: function(xhr, status, index, anchor) {
					$j(anchor.hash).html("Couldn't load this tab. We'll try to fix this as soon as possible. If this wouldn't be a demo.");
				}
			}
		});
		$j("#menu").tabs({
			panelTemplate: '<div class="box"></div>',
			ajaxOptions: {
				error: function(xhr, status, index, anchor) {
					$j(anchor.hash).html("Couldn't load this tab. We'll try to fix this as soon as possible. If this wouldn't be a demo.");
				}
			}
		});

	});
