﻿function smallMapRov(pathToRov){
$(pathToRov).mouseover(function(){
	$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
	}).mouseout(function(){
	$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	}).each(function(){
	$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
})	
}

$(function(){
smallMapRov("#logo");
/*
$('.entry').fadeOut(2000);
$('.postmetadata').fadeOut(2000);

$('p.meta').css('cursor','pointer');  
$('p.meta').click(function() { 
		$(this).next().slideToggle(2000);
		$(this).next().next().slideToggle(2000);
}); 
*/



});
