// JavaScript Document
$(document).ready(function () {
	
	$("img.hoverable-jpg").mouseover(function() { 
    	var src = $(this).attr("src").match(/[^\.]+/) + "-o.jpg";
        $(this).attr("src", src);
    }).mouseout(function() {
        var src = $(this).attr("src").replace("-o", "");
        $(this).attr("src", src);
    });	
	
	$("img.hoverable-png").mouseover(function() { 
    	var src = $(this).attr("src").match(/[^\.]+/) + "-o.png";
        $(this).attr("src", src);
    }).mouseout(function() {
        var src = $(this).attr("src").replace("-o", "");
        $(this).attr("src", src);
    });		
	
});
