$(document).ready(function () {
	$('.rollOver').bind ('mouseover', function () {
		this.src = 'images/'+this.id+"_over.jpg";
	});
	$('.rollOver').bind ('mouseout', function () {
		this.src = 'images/'+this.id+".jpg";
	});
	$('.blowAway').each(function (i) {
		$(this).val(this.attributes.title.value);
		$(this).bind ('focus', function () {
			var v = $(this).val();
			var ov = this.attributes.title.value;
			if (v == ov) {
				$(this).val('');
			}
		});
		$(this).bind ('blur', function () {
			var v = $(this).val();
			var ov = this.attributes.title.value;
			if (v == '') {
				$(this).val(ov);
			}
		});
	});
});
