$(document).ready(function(){
	$('a[href^=#]').slideto({
		speed  : 1000
	});
	$('#nav a').hover(
			  function () { 
				$(this).stop().animate({ color: "#0192F3" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#ffffff" }, 500);
			  } 
		);
		$('.back').hover(
			  function () { 
				$(this).stop().animate({ color: "#ffffff" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#0192F3" }, 500);
			  } 
		);
		$('#contactinfo a').hover(
			  function () { 
				$(this).stop().animate({ color: "#0192F3" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#ffffff" }, 500);
			  } 
		);
		$('.btn').hover(
			  function () { 
				$(this).stop().animate({ color: "#ffffff" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#0192F3" }, 500);
			  } 
		);
});

