/*Fade in*/
$(document).ready(function() { 
  $('.image_rotate').innerfade({ 
    speed: 'slow', 
    timeout: 5000, 
    type: 'random',
    containerheight: '358px' 
  });
});
/*Lightbox*/
$(document).ready(function(){
  $(".lightbox").lightbox();
});

    
jQuery.fn.mailme = function() {
    var at = / at /;
    var dot = / dot /g;
    this.each( function() {
        var addr = jQuery(this).text().replace(at,"@").replace(dot,".");
        var title = jQuery(this).attr('title')
        $(this)
            .after('<a href="mailto:'+addr+'" title="'+title+'">'+ addr +'</a>')
            .remove();
    });
};

jQuery(function(){
     $(".img-swap").hover(
          function(){this.src = this.src.replace("_off","_on");},
          function(){this.src = this.src.replace("_on","_off");
     });
});



