$(function () {
	
	$('.cir_block_content:first').show();
	
	$('.cir_block_title').not(':first').click(function () {
	
		$(this).next().slideToggle();	
		
	});
	
	
	$('.cir_block_title').not(':first').hover( function() {
	
	$(this).css({'background':'#DEF5F8'});	
		
	},
	
	function() {
		
		$(this).css({'background':'#f0f0f0'});
	}
	
	);
	
	$('.cir_block_content').not(':first').hover(
	
	function() {
	
	$(this).prev().css({'background':'#DEF5F8'});	
		
	},
	
	function() {
		
		$(this).prev().css({'background':'#f0f0f0'});
	}
	
	);


});