// JavaScript Document
$(document).ready( function(){
	var flow = $('#mc-buyingflow-anc');
	var img = $('img',flow);
	
	var pos = {
		"flow-step2": "0 0",
		"flow-step3": "0 310px",
		"flow-step4": "0 248px",
		"flow-step5": "0 186px",
		"flow-step6": "0 124px",
		"flow-finish": "0 62px"
	};
	
	$('area').hover(function(){
		flow.css("background-position",pos[this.id]);
		img.animate({opacity: 0},{duration: "fast",queue: false});
	},function(){
		img.animate({opacity: 1},{duration: "fast",queue: false});
	});

});
