function preloadImage(url, callback) {
	var img = new Image();
	$(img).load(callback).attr('src', url);
}

// Needed for back browse actions to call document.ready
history.navigationMode = 'compatible';

$(document).ready(function() {
	
	//-------------------------------------------------------
	// Set up scrolling actions
	
	$(".scroll_to_top").click(function() {$.scrollTo($("body").position().top, 300)});
	$(".scroll_to_overview").click(function() {$.scrollTo($("#overview").position().top-60, 300)});
	$(".scroll_to_different").click(function() {$.scrollTo($("#different").position().top, 300)});
	$(".scroll_to_team").click(function() {$.scrollTo($("#team").position().top, 300)});
	$(".scroll_to_partners").click(function() {$.scrollTo($("#partners").position().top, 300)});
	$(".scroll_to_billing").click(function() {$.scrollTo($("#billing").position().top, 300)});
	$(".scroll_to_faq").click(function() {$.scrollTo($("#faq").position().top, 300)});

});
