var megaConfig = { interval: 20, sensitivity: 4, over: addMega, timeout: 100, out: removeMega };
function addMega(){
	$(this).find('ul').stop().fadeTo('fast', 1).show(); //Find sub and fade it in
}
function removeMega(){
	$(this).find('ul').stop().fadeTo('fast', 0, function() { //Fade to 0 opactiy
		$(this).hide();  //after fading, hide it
	});
}
$(document).ready(function() {
	// NAVIGATION HOVERINTENT CODE
	$('ul#menu li.mega').hoverIntent(megaConfig);
	if($.browser.msie && $.browser.version.substr(0,1)<7) {
		$('ul#menu li').hover(function() {
			$(this).addClass('hover');
		}, function() {
			$(this).removeClass('hover');
		});
	}
	// CAUSES SEPIA IMAGES TO GO OVER COLOR IMAGES, THEN FADE OUT - IN ABOUT US AND BIO SECTIONS
	$('.changeme').hover(function () {
		$(this).attr('src', $(this).attr('src').replace(/.jpg/, '_sepia.jpg'));
	},function() {
		$(this).attr('src', $(this).attr('src').replace(/_sepia/, ''));
	});
	$('.changeme').each(function() {
		$(this).hide();
		$('<div class="hideme"><img src="'+$(this).attr('src').replace(/.jpg/, '_sepia.jpg')+'"</div>').appendTo($(this).parent()).fadeOut(4000);
		$(this).show();
	});
});
