$(document).ready(function() {
    $("a").filter(function(){
        if ($(this).attr('href')) {
            if($(this).attr('href').match(/\.(jpe?g|png|gif)/i)) {
                $(this).fancybox();
            }
        }
    });  
    
    $("a[rel~=external]").each(function(i){
        this.target="_blank";
    });	     
    
    $('#column2of2').css('height', $('#column1of2').css('height'));
        
    if($('.obmt').length > 0) {
        $('.obmt').attr('href', 'mailto:'+$('.obmt').attr('href').replace(/\|/g,'@').replace(/\:/g,'.')).text($('.obmt').text().replace(/\|/g,'@').replace(/\:/g,'.'));	
    }
});

