jQuery(function($) {
	var speed = 400, color = '#4966ff';

	$('#menu li a').hover(
		function() {
			$(this).stop().animate({ backgroundPosition: "(0 43)" }, speed, 'easeOutSine');
	}, function() {
		$(this).stop().animate({ backgroundPosition: "(0 0)" }, speed * 2, 'easeOutSine');
	});

	$('#menu li').click(function() {
		window.location = $(this).find('a:first').attr('href');
	});

	$('.gallery a').lightBox();
});
