$(document).ready(function() {	
	$('.menu_link').hover(
		function() {
			$(this).animate(
				{"top": "+=8px"},
				{
					duration: 50,
					specialEasing: {
					top: 'linear'
				}}
			).animate(
				{"top": "-=18px"},
				{
					duration: 100,
					specialEasing: {
					top: 'linear'
				}}
			).animate(
				{"top": "+=10px"},
				{
					duration: 300,
					specialEasing: {
					top: 'easeOutBounce'
				}}
			);
			$(this).css('color','#babdb6');
			stop();
		},
		function() {
			$(this).animate(
				{"top": "0"},
				{
					duration: 20,
					specialEasing: {
					top: 'linear'
				}}
			);
			$(this).css('color','#ffffff');
			stop();
		}
	);
	
	$("a[rel='galeria']").colorbox();
});
