
$.preload( [ '/img/btn_learnmore-lg-hover.gif', '/img/btn_learnmore-sm-hover.gif', '/img/btn_more-sm-hover.gif', '/img/btn_learnmore-sm-hover.png']);


$(function() {
	
	$(".lmBtnLg,  .lmBtnSm, .moreBtnSm").hover(function() {
			$(this).attr("src", $(this).attr("src").split(".").join("-hover."));
			}, function() {
			$(this).attr("src", $(this).attr("src").split("-hover.").join("."));
	});
});


