$(document).ready(function(){
$('#indeximage').cycle({ 
    fx:    'fade', 
    speed:  1200,
	timeout: 3700
 });

});

$(function() {
$('.hoverswap').hover(
function () {
$(this).attr('src', $(this).attr('src').replace(/.png/, '-over.png'));
},
function () {
$(this).attr('src', $(this).attr('src').replace(/-over.png/, '.png'));
}
);
});