// JavaScript Document

$(document).ready(function(){
	$('.blog-container').hover(over, out);
});

	function over(event)
	{
		$(this).find('.where-is-this').show();
	}
	
	function out(event)
	{
		$(this).find('.where-is-this').hide();
}
