$(document).ready(function(){
	
	$('div.speedDial').mouseover(function(){
		$(this).css('border-color','#071F33');
		$(this).children('div.date').show();
	});
	
	$('div.speedDial').mouseout(function(){
		$(this).css('border-color','#FFF');
		$(this).children('div.date').hide();
	});
	
});

