		// -------------------------------------------------------------------		// Utility Functions 				function externalLinks() { 			$("a").each(function(){				if ($(this).attr("href") && $(this).attr("rel") == "external"){ 					$(this).attr({ target: "_blank" });					}			});		}       	// -------------------------------------------------------------------		this.setLazyLoad = function(){			$("img").lazyload({ 			    placeholder : "../images/grey.gif",			    effect : "fadeIn",				threshold : 200										});		}		// -------------------------------------------------------------------		$(document).ready(function() {											externalLinks();			setLazyLoad();		});				// -------------------------------------------------------------------	
