function rollover() {
	$(".rollover").each(
		function () {
			$(this).mouseover(
                function () {
					$(this).attr("src", $(this).attr("src").replace(".", "_o."));
				}
			);
			
			$(this).mouseout(
                function () {
                    $(this).attr("src", $(this).attr("src").replace("_o.", "."));					
				}
			);
		}
	);
}
$(rollover);
