$(document).ready(function() {
    $('div#content *[class=hover] img').mouseover(function(){
        var _img_ = $(this).attr("src").match(/[^\.]+/);
        var srch = _img_ + "hover.png"; 
        $(this).attr("src", srch); 
    }).mouseout(function() { 
        var src = $(this).attr("src").replace("hover.png", ".png"); 
        $(this).attr("src", src); 
    });
    
    $('#galleryphotos').jcarousel();
    $("a#tempo").fancybox({type: 'iframe', width: 150, height:170, padding:0});
    $('*[rel=iframe]').fancybox({type: 'iframe', width: '75%', height: '75%'});
    $('*[rel=pic]').fancybox();
});
