//Link highlight functionfunction menu(link){    document.getElementById(link).style.color='#4b4b4b';	document.getElementById(link).style.textDecoration='underline';}//Image Swap Functionfunction imageSwap(bride){    var path = 'galleries/lightbox/';    var path2 = 'quotes/';    var ext = '.jpg';    var ext2 = '.html';        var image = path+bride+ext;    var quote = path2+bride+ext2;        document.getElementById('real-large').src=image;    document.getElementById('quote-frame').src=quote;}
