// JavaScript Document

$(document).ready(function(){
	$(".li0101").hover(
		function(){
			if (jQuery(this).children("ul:animated").length > 0) {
				return;
			}
			jQuery(this).children("ul").slideDown(100);
		},
		function(){
			jQuery(this).children("ul").slideUp(1);
		}
	);

	// rollover.
	$("img[@class=swap]").hover(
		function(){
			this.src = this.src.replace(/^(.+)(\.[a-z]+)$/, "$1on$2");
		},
		function(){
			this.src = this.src.replace(/^(.+)on(\.[a-z]+)$/, "$1$2");
		})
		.each(function(){
			this.preloaded = new Image;
			this.preloaded.src = this.src.replace(/^(.+)(\.[a-z]+)$/, "$1on$2");
		}
	);
});

