$(document).ready(function(){
	
	$(".connect li").hover(
	function(){
		$(this).children("del").css("color","#D14F0B");
		$(this).children("del").css("fontWeight","bold");
	},
	function(){$(this).children("del").css("color","#CCC");
		$(this).children("del").css("fontWeight","normal");
	}
	);
	$(".connect *").focus(function(){
		$(this).next("del").css("color","#D14F0B");
		$(this).next("del").css("fontWeight","bold");
	});
	$(".connect *").blur(function(){
		$(this).next("del").css("color","#CCC");
		$(this).next("del").css("fontWeight","normal");
	});
	
});
