jQuery(document).ready(function(){	
	var CurrentScroll = 0;
	
	$(".scroll-news-blocks .item").mouseover(function(){
		if (CurrentScroll != $(this).attr('blockid')){
			$("#block_" + CurrentScroll + " .info").hide();
			CurrentScroll = $(this).attr('blockid');
			$("#block_" + CurrentScroll + " .info").show();
			$(".scroll-news-img img").attr("src", $("#block_" + CurrentScroll).attr('imsrc'));
		}
	});
	
	$("#network-left").jCarouselLite({
		speed: 350,
		visible: 4,
		btnNext: ".network-right",
		easing: "backinout"
	});
});
