
// image mouseover swap
$(document).ready(function() {
	$(function() {
		$("img.btn")
			.mouseover(function() { 
				var src = $(this).attr("src").match(/[^\.]+/) + "_over.png";
				$(this).attr("src", src);
			})
			.mouseout(function() {
				var src = $(this).attr("src").replace("_over", "");
				$(this).attr("src", src);
			});
	});	
});
