@charset "UTF-8";
@import "./base.css";

h1 {
	/* image */
	width:250px;
	height:350px;
	background-color:#dae3ea;
	background-image:url(./background/alice1_.gif);
}
* html h1 {
	background:expression(
		this.style.background || (
			function () {
				var colors = [
					'#f9e0dd', '#f7dde0', '#f6e6d6', '#eaeada', '#ddead0',
					'#daeada', '#daeae8', '#dae3ea', '#e3daea', '#dadada'
				];
				var images = [
					'alice1_.gif', 'alice2_.gif', 'alice3_.gif', 'alice4_.gif'
				];
				var c = Math.floor( Math.random() * colors.length );
				var i = Math.floor( Math.random() * images.length );
				return	colors[c] + 
						' url(http://useyan.x0.com/s/_css/default/background/' + 
						images[i] +
						') no-repeat scroll 50% 50%';
			}()
		)
	);
}
