$(document).ready(function() {
	$(".data").each(function () {
		if ($("p",this).height() == 18) {
			$("img",this).css("marginTop","-3px");
		}
		else if ($("p",this).height() == 36) {
			$("img",this).css("marginTop","6px");
		}
		else if ($("p",this).height() == 54) {
			$("img",this).css("marginTop","14px");
		}
	});
	
	$("#scroll-container").css("left","-486px");
	
	$("a.nav-about").click(function (ev) {
		ev.preventDefault();
		$("#scroll-container").animate({left: "-18px"},500);
	});
	
	$("a.nav-find").click(function (ev) {
		ev.preventDefault();
		$("#scroll-container").animate({left: "-945px"},500);
	});
	
	$("a.nav-home").click(function (ev) {
		ev.preventDefault();
		$("#scroll-container").animate({left: "-486px"},500);
	});
	
});