$(document).ready(function(){

	$('.node_data').hover(
		function(){$(this).removeClass('node_data').addClass('node_data_hover')},
		function(){$(this).removeClass('node_data_hover').addClass('node_data');
	});
		
});
