jQuery(document).ready(function() {

	/* Global variables - do not var */
	
	// Get bookmark if present
	global_pageBookmark = TWIG.getHash();

	/* Global variables - do not var */

	// Apply PNG fix for IE6
	$(document).pngFix();

	// Find all the tabsets and create TabSet objects for each
	var tabSets = $('.tabset');
	tabSets.each(function(idx) {
		new TWIG.TabSet($(this));
	});

});
