// filename: dpl.js
//	purpose: script using Dayton Power styles to do things like swap images
	
	function swapImage(img,val){
        var imgVal = document.getElementById(img);
        if(val == 'color') imgVal.src = 'images/dpl/arrow_dpl.gif';
        if(val == 'gray') imgVal.src = 'images/arrow_gray.gif';
    }