$(document).ready(function() {
	$("span.span_link").hover(function() {
		$(this).css("color", "#a5adb0");
		$(this).css("text-decoration", "none");
	}, function() {
		$(this).css("color", "#fe9102");
		$(this).css("text-decoration", "underline");
	});
	
	if(segment(1) == "contacts")
	{
		email("info", "here", "perula.com.ua");
	}
});
