$(function(){
		
	
	function resizeBackground() {
		var bg_size = { width: 1984, height: 1973 };
	
		var w, h, m;
	
		m = Math.max($(window).width() / bg_size.width,  $(window).height() / bg_size.height);
	
	
		w =  bg_size.width * m;
		h = bg_size.height * m;
		$('#bg-img').width(w + 'px').height(h + 'px');		
	}
	
	$(window).resize(function(){ resizeBackground(); });
	resizeBackground();
	
	/*
	$('#bg_img').width( bg_size.width * m).height( bg_size.height * m);
	*/
	$('.menu-item').each(function() {
		$(this).data('top', $(this).css('margin-top'));
		
	});
	$('.a-menu').hover(
			function() {
				
				$(this).stop().animate({marginTop: '-10px'}, 100);
				$('#' + $(this).attr('id') + '-bg').stop().animate({marginTop: '-10px'}, 100);
			},
			function() {
				$(this).animate({marginTop: 0}, 100);
				$('#' + $(this).attr('id') + '-bg').stop().animate({marginTop: 0}, 100);
			}			
	)
	
	
	
});
	
