$(document).ready(function(){
	$('a[href^=#]').slideto({
		speed  : 1000
	});
	$('.bubplastic.horizontal ul li a').hover(
			  function () { 
				$(this).stop().animate({ color: "#000" }, 1000);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#FFF" }, 1500);
			  } 
		);
		$('#menu li a.current').hover(
			  function () { 
				$(this).stop().animate({ color: "#F00" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#F00" }, 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: "#F00" }, 500);
			  }, 
			  function () { 
				$(this).stop().animate({ color: "#000" }, 500);
			  } 
		);
});
