$(document).ready(function(){
	if($.browser.safari){
		$("h2.news").toggle(function(){
			$(this).next(".toggle").css("display","block");
			return false;
		},function(){
			$(this).next(".toggle").css("display","none");
			return false;
		});

		$("h2.who").toggle(function(){
			$(this).next().next().css("display","block");
			return false;
		},function(){
			$(this).next().next().css("display","none");
			return false;
		});
	}else{	
		$("h2.news").click(function() {
			$(this).next(".toggle").toggle(400);
			return false;
		}).next(".toggle").hide();

		$("h2.who").click(function() {
			$(this).next().next().toggle(400);
			return false;
		}).next().next().hide();
	}

	$('.tip-trigger').mouseover(function(){
		$('.tip', this).css('display','block');
	}).mouseout(function(){
		$('.tip').css('display','none');
	});
	
});
