$(document).ready(function(){

	$('#varietals').bind("mouseleave", function(e){
		$('#tierList').fadeOut("fast");		
	});
	$('.tierLink').bind("mouseenter", function(e){
		$('#tierList').fadeIn("fast");
	});
	
	/*
	 * to ensure compatibility with sifr, .memBenToggle (a '.toggleName' item)
	 * is "clicked" manually to open it at page load
	 */
	$('.toggleInfo').hide();

	$('a.toggleName')
		.click(function(){
		$(this).toggleClass('open').next('.toggleInfo').slideToggle('fast'); 
		return false;
	});

	$('.memBenToggle').click();
	
	/* mailing list popups (global)  */
	
	$("a[href='/mailingList'], a[href='/mailingList/']")
		.attr('href','/mailingListPop?KeepThis=true&TB_iframe=true&height=545&width=495');
	

	
});

