window.addEvent('domready', function(){	
	/*
		var images_arr = new Array();
		['home_off.gif',"agency_off.gif","client_off.gif","contact_off.gif","media_off.gif"].each(function(item, index){
			images_arr[index] = new Image(); 
			images_arr[index].src = "http://www.brianmaclaurin.com/images/nav/" + item;
		});

	$$('.nav_link').addEvents({
    	'mouseover': function(){this.getElement('img').src = this.getElement('img').src.replace('_off','_on');},
		'mouseout': function(){this.getElement('img').src = this.getElement('img').src.replace('_on','_off');}
	});	*/
        
});