$(window).load(function() {    

	function resizeBg() {
		if ( ($(window).width() / $(window).height()) < ($("#bg").width() / $("#bg").height()) ) 
		{
			$("#bg").removeClass().addClass('bgheight');
			scale = $("#bg").height() / 1000; 

		} else {
			$("#bg").removeClass().addClass('bgwidth');
			scale = $("#bg").width() / 1400; 
		}
		$("#fn").width(447*scale);
		$("#fn").css('top',parseInt(49*scale));
		$("#fn").css('left',parseInt(542*scale));
	}

	$(window).resize(function() { resizeBg(); }).trigger("resize");
	
	$("#fn").hover(function() { 
		this.src="/images/finger2.png";
	}, function() {
		this.src="/images/finger1.png";
	});	
	

});



