$(function(){
	//
	$("a.cluetip").cluetip({splitTitle: "|"});

	//
	$("a").not(".asset-meta a, #comments h2 a, .bt_inquire a").hover(
		function(){
			$(this).animate({color:"#690"},"fast");
		},
		function(){
			$(this).animate({color:"#000"},"fast");
		}
	);
	$(".logo a, .bt_inquire a").hover(
		function(){
			$(this).animate({backgroundColor:"#690"},"fast");
		},
		function(){
			$(this).animate({backgroundColor:"#000"},"fast");
		}
	);
});

