jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("div.articles_read_comment h2.title_read").hide();
	jQuery("div.articles_read_comment div.content_bloc_read").hide();
	jQuery("div.articles_read_comment h2.title_comment").hide();
	jQuery("div.articles_read_comment div.content_bloc_comment").hide();
	jQuery("div.articles_read_comment h2.title_focus").show();
	jQuery("div.articles_read_comment div.content_bloc_focus").show();
	document.getElementById('select_list').options[0].selected = true;
	
	jQuery("select#select_list").change(
		function() {
			sel = document.getElementById('select_list').value;
			if(sel == "read"){
				jQuery("div.articles_read_comment h2.title_comment").hide();
				jQuery("div.articles_read_comment div.content_bloc_comment").hide();
				jQuery("div.articles_read_comment h2.title_focus").hide();
				jQuery("div.articles_read_comment div.content_bloc_focus").hide();
				jQuery("div.articles_read_comment h2.title_read").show();
				jQuery("div.articles_read_comment div.content_bloc_read").show();
			}
			else if(sel == "comment"){
				jQuery("div.articles_read_comment h2.title_read").hide();
				jQuery("div.articles_read_comment div.content_bloc_read").hide();
				jQuery("div.articles_read_comment h2.title_focus").hide();
				jQuery("div.articles_read_comment div.content_bloc_focus").hide();
				jQuery("div.articles_read_comment h2.title_comment").show();
				jQuery("div.articles_read_comment div.content_bloc_comment").show();
			}
			else if(sel == "focus"){
				jQuery("div.articles_read_comment h2.title_read").hide();
				jQuery("div.articles_read_comment div.content_bloc_read").hide();
				jQuery("div.articles_read_comment h2.title_comment").hide();
				jQuery("div.articles_read_comment div.content_bloc_comment").hide();
				jQuery("div.articles_read_comment h2.title_focus").show();
				jQuery("div.articles_read_comment div.content_bloc_focus").show();
			}
		}
	);
});
