$(document).ready(function(){
	//Preload images
	$("img.himg").each(function(i){
		var preimg = $(this).attr("src").replace('.jpg', '_hover.jpg');
		jQuery("<img>").attr("src", preimg);
		if($(this).hasClass("selected")){
			$(this).attr("src", $(this).attr("src").replace('.jpg', '_hover.jpg'));
		}
	});

	$("img.himg").mouseover(function(){
		if(!$(this).hasClass("selected")){
			$(this).attr("src", $(this).attr("src").replace('.jpg', '_hover.jpg'));
		}
	});
	
	$("img.himg").mouseout(function(){
		if(!$(this).hasClass("selected")){
			$(this).attr("src", $(this).attr("src").replace('_hover.jpg', '.jpg'));
		}
	});

	$(".news_item").hover(function(){$(this).addClass("hover").find("span").animate({marginLeft:"6px"})},function (){$(this).removeClass("hover").find("span").animate({marginLeft:"0px"})});
    	$(".agenda_item").hover(function(){$(this).addClass("hover").find("span.text").css({"display":"block"}).animate({marginLeft:"6px"})},function (){$(this).removeClass("hover").find("span.text").animate({marginLeft:"0px"})});
});