////////////////////////////////////////////////
//
// swapImg.js
//
////////////////////////////////////////////////

$(function(){
  $(".hover").hover(function(){
	var cont = $(this).attr("src");
	if ((/\d\.(jpg|gif|png)/).test(cont)){
	cont = cont.replace(/(\.)(jpg|gif|png)/,"_f2.$2");	
	}
	$(this).attr("src",cont)
}, function(){
	var cont = $(this).attr("src");
	cont = cont.replace(/(_f2)\./,".");
	$(this).attr("src",cont)
}); 
});
