$(document).ready(function() {
		
	$('.img_ro').hover(
		function() {
			$(this).parent().children('.thumb_info').children('h3').children('a').css('background-color','#00AEFF');
			$(this).parent().children('.thumb_info').children('p').children('a').css('background-color','#00AEFF');
		},
		function() {
			$(this).parent().children('.thumb_info').children('h3').children('a').css('background-color','#38c62c');
			$(this).parent().children('.thumb_info').children('p').children('a').css('background-color','#38c62c');
		}
	);
	
	$('.thumb_info').hover(
		function() {
			$(this).children('h3').children('a').css('background-color', '#00AEFF');
			$(this).children('p').children('a').css('background-color', '#00AEFF');
		},
		function() {
			$(this).children('h3').children('a').css('background-color', '#38c62c');
			$(this).children('p').children('a').css('background-color', '#38c62c');
		}		
	)

})