origImage=null;

$(document).ready(function () {
	$(".img2a2").hover(function() {
		origImage=$(this).attr("src");
		$(this).attr("src", "images/Vulcan_Aluminum/Vulcan_Aluminum_Stock_Program_hover.png")
	},function() {
		$(this).attr("src", origImage)
	});
});



