﻿$('document').ready(function(){
$("#menu a").hover(
			function(){
				$(this).animate({
					marginTop:'-=2px'
				},100);		
			},
			function(){
				$(this).animate({
					marginTop:'+=2px'
				},100);			
			}
		);
$("#fotopas img").css('opacity','0.9');
		$("#fotopas img").hover(
				function(){
						$(this).animate({
							opacity:1
						},150);
				},
				function(){
						$(this).animate({
							opacity:0.9
						},150);
				}		
		);
});		


