// JavaScript Document

$(document).ready(function() {
	$(".blog_entry_preview .read_more").fadeTo("fast", 0.0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
	$(".blog_entry_preview").hover(function() {
		$(this).find(".read_more").fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	}, function() {
		$(this).find(".read_more").fadeTo("fast", 0.0); // This should set the opacity back to 0% on mouseout
	});
	
	$('#speaking_events').click(function(){
		
		if ($(this).next('div').is(':hidden')) {
			$(this).next('div').slideDown(); 
		}
		else
		{
			$(this).next('div').slideUp();	
		}

		return false;

	});

});