// for homepage functionality



$(document).ready(function(){
	mTabs();
});


/* =================================================================== */
// for suckerfish dhtml menus
mTabs = function() {
	var config = {
		containerId		: 'sections'
		
	}
	$('#'+config.containerId+'>div>h2') // find the headers
		.filter(':first').addClass('selected').end() // add 'selected' class to first h2
		.find('a') // find the new link
		.mouseover( function(e) { // a click function
			switchTab(this);
			e.preventDefault();
		})
		.focus( function(e) { // a click function
			switchTab(this);
			e.preventDefault();
		});
	
	function switchTab(e) {
		$('#'+config.containerId+'>div>div:visible').hide();
		$(e).parents('.section').children('div').show();
		$(e).parents('#'+config.containerId).find('h2').removeClass('selected').end().end().parent().addClass('selected');
	}
}

/* =================================================================== */



