$(document).ready(function(){
	$("#content_news a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
	$(".change_img").mouseover(function(){
		$(this).attr('src', $(this).attr('imgkey')+'_on.jpg');
	});
	$(".change_img").mouseout(function(){
		$(this).attr('src', $(this).attr('imgkey')+'.jpg');
	});
});

