﻿// JScript File :: processRel
jQuery(document).ready(function(){
    var searchTypes = new Array('PDF', 'ZIP', 'JPEG', 'DOC');
    $(searchTypes).each(function(){
        var thisType = this;
        $("a[rel='"+thisType+"']").each(function(){
            $(this).attr({title: 'Click to download this '+thisType+' file.', target: '_blank'});
        });
    });
});

