// JavaScript Document
//$.preloadImages("images/home_on.jpg", "images/gallery_on.jpg", "images/inscribe_on.jpg", "images/links_on.jpg", "images/mail_on.jpg");

$(document).ready(function() {
	$(".mro").hover(function() {
		this.src = this.src.replace("_off", "_on");
	}, function() {
		this.src = this.src.replace("_on", "_off");
	});

	$("ul.mainmenu li.maintitle").mouseover(function(){
		$(this).find('.subnav').stop().animate({
			height: '100px', opacity:'1'
		},{
			queue:false, duration:1500, easing: 'easeOutBounce'
		})
	});
	
	$("ul.mainmenu li.maintitle").mouseout(function(){
		$(this).find('.subnav').stop().animate({
			height:'0px', opacity:'0'
		},{
			queue:false, duration:1600, easing: 'easeOutBounce'
		})
	});
});
