$(function() {
	$("div.thumb,div.jitan-thumb,div.feature-box,div#ht-img").hover(
		function() {
			$(this).css({ color:"#0b52cc" }).find("img").css("border","2px solid #0b52cc");},
		function() {
			$(this).css({ color:"#8f6e08" }).find("img").css("border","2px solid #8f6e08");}
	);
});