$(document).ready(function() {
	$('#fader').animate({opacity:1}, 300);
	
	$('.dropper > a').live('click',function() {
		if ($(this).parent('.dropper').children('.sub').is(':visible')) {
			return false;
		}
		$('.sub:visible').slideUp(200);
		$(this).parent('.dropper').children('.sub').slideToggle(200);
		return false;
	});
});
