/**
 * lh.js
 * @author Lewis Howles
 *
 * Default Niceties.
 */

var lh = {	
	/*
	* Set target blank on external links
	*/
	externalLinks : function(){
		$('a[rel="popup"]')
			.attr('target', '_blank')
	}   
}

$(function() {
	lh.externalLinks();
	
	$("#background").fullBg();
});
