// JavaScript Document
$(document).ready(function(){
	$('#flashhead, #imagehead, #comicshead, #medicalhead').next('div').hide();
	
	$('#flashhead, #imagehead, #comicshead, #medicalhead').click(function(){
		$(this).next('div').animate({'height':'toggle'},'slow');
		return false;
	});
	$('#navbar h2, #navbar h4').hover(function(){
		$(this).animate({'color':'#ff3333'}, 'fast');
	}, function(){
		$(this).stop();
		$(this).animate({'color':'#CCCCCC'}, 'fast');
	});
});
