// JavaScript Document $(document).ready(function() { $("#portfolioListings div:odd").addClass("even"); //SET ALL THE TITLE ATTRIBUTES TO THE A TAG INNER HTML OR IMAGE ALT TAG //FOR JQUERY LIGHTBOX TO USE AS PHOTO CAPTIONS $("#portfolioListings a").each(function(i) { if ($("img",this).length < 1) { this.title = this.innerHTML; } else { this.title = $("img",this).attr("alt"); } }); $("#portfolioListings div").each(function(){ $(this).children(".portfolioPieces").children().children("a").lightBox({}); }); });