function initlinks(){
	
	$('.linksItem').hover(
	
		function() {
		
			$(this).children(".linksItemBackground").stop(true, true).fadeIn(timeOver);
			$(this).children(".linksItemContent").children(".linksItemTitle").stop(true, true).animate({"color": "#333"}, timeOver);
			
		},
	
		function() {
		
			$(this).children(".linksItemBackground").stop(true, true).fadeOut(timeOver);
			$(this).children(".linksItemContent").children(".linksItemTitle").stop(true, true).animate({"color": "#f17100"}, timeOver);
			
		}
	
	);
	
}
