jQuery(document).ready(function(){
	jQuery(".block_display").hover(function(){
		jQuery(".block_properties", this).css("display", "inherit")
		}, function() {
		jQuery(".block_properties", this).css("display", "none")
	});
});