// Random Frame Colors Select

function randFrame() {
	// Frame Colors
	var fclr = new Array('#666666','#000000','#5D3136','#D49443');
	
	if(document.getElementById('frameColor')) {
  		var dom = document.getElementById('frameColor');
		// Select Random Frame Color
		dom.style.borderColor = fclr[Math.round((Math.random()*fclr.length))];
	}	
}
