$(document).ready(function(){
	news = $('.news');
	first_news = news.eq(0);
	first_news.parent().css({'background': '#738ca9'});
	first_news.children(':first').css({'color' : '#DCE6F2'});
	first_news.children(':last').css({'color' : '#DCE6F2'});
	first_news.css({'background' : 'none'});

	news.bind('mouseover', function(){
		$('#newsSelector > li').css({'background': 'none'});
		$('#newsSelector .date').css({'color': '#b2c3d8'});
		$('#newsSelector .commentsLink').css({'color': '#b2c3d8'});
		$('.news').css({'background' : 'url(/img/borderx.png) center bottom repeat-x'});
		$('li.last a').css({'background' : 'none'});
		$(this).parent().css({'background': '#738ca9'});
		$(this).children(':first').css({'color' : '#DCE6F2'});
		$(this).children(':last').css({'color' : '#DCE6F2'});
		$(this).css({'background' : 'none'});
		//C4D4E8
	});
})
