/*	Custom Mootools Functions
 *	@author Tony Collings
 *	@date Jun 2009
 *	Requires Mootools 1.2.1 Library, will not with with 1.11
 *
 */
 
 
function doFancyBorders(arrElements,sBlurColor,sFocusColor){
	//alert('here');
	arrElements.each(function(oElement) {
		oElement.addEvents({
			'focus' : function() {
					oElement.setStyles({border:'2px solid '+sFocusColor});
				}, 
			'blur' : function() {
					oElement.setStyles({border:'2px solid '+sBlurColor});
				}
		}); 
	});
}