

$(document).ready(function(){

	$('.tb').hover(
		function(){
			$(this).children('.hover_desc').show();

		},
		function(){
			$(this).children('.hover_desc').hide();
		}
	);
	
	
});


