
$(function() {
   	
   	$("#company_image").bind("mouseover", function() {
		$(".image_note").css("border-bottom", "1px dotted #ced957");
		$(".image_note").css("color", "#ced957");
   	}).bind("mouseout", function() {
		$(".image_note").css("border-bottom", "0px");
		$(".image_note").css("color", "#ccc");
   	});

   	
});
