$(document).ready(function(){
	$("h1").css("background","none");
	$("#top").append('<div id="slide"><img src="img/top1.gif" /><img src="img/top2.gif" /><img src="img/top3.gif" /></div>');
	$("#slide").cycle({timeout:8000,speed:3500});
	
	$("#gal li").contents("a").hover(
		function(){
			$(this).css("width","183px");
			$(this).contents("img").css("visibility","visible");
			$(this).stop().animate({width: "225px",marginTop:"-15px"}, 550);
		},
 
		function(){
			$(this).stop().animate({width: "183px",marginTop:"0px"}, 550,
				function(){$(this).contents("img").css("visibility","hidden");});
		});
		
		$("#mwys").hover(
		function(){
			$(this).contents("ul").css("display","none");
			$(this).contents("ul").show(500);
		},
		function(){
			$(this).contents("ul").hide(500);
		});
		
		$("#mwys li").hover(
		function(){
			$(this).contents("ul").css("display","none");
			$(this).contents("ul").show(500);
		},
		function(){
			$(this).contents("ul").hide(500);
		});
});