$(function(){
$("img.rollover")
.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(){
$("
").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
})
})
$(function(){
$(".hover > img").mouseover(function(){
$(this).fadeTo(0, 0.7);
}).mouseout(function(){
$(this).fadeTo(0, 1);
}).each(function(){
$("
").fadeTo(0, 0.7);
});
})