$(function() {
	// this prevents underlines on images that are children of anchor elements
	$('a img').hover(function() {
		$(this).parent().css('border-bottom', '1px solid transparent');
	});
});
