$(function(){
	// rollover
	$('.imgover').each(function(){
		this.osrc = $(this).attr('src');
		this.rollover = new Image();
		this.rollover.src = this.osrc.replace(/(\.gif|\.jpg|\.png)/, "_o$1");
	}).hover(function(){
		$(this).attr('src',this.rollover.src);
	},function(){
		$(this).attr('src',this.osrc);
	});
	// gnavi pulldown menu
	$('#gNavi a').each(function() {
		if($(this).next('ul').size()) {
			$(this).parent().children("a, ul").mouseover(function() {
				$(this).parent().css("overflow", "visible");
			}).mouseout(function() {
				$(this).parent().css("overflow", "hidden");
			});
		}
	});
	$('body > img:first').hide();
});
