// JavaScript Document

	$(document).ready(function() {

		$('div#block-views-engagements-block_1').find('div.views-row-1').find('div.views-field-body').hide().end().find('div.views-field-title').click(function() {																																							
		  $('div.views-row-1').find(".title_img").css("background","transparent url(img/minus.gif) no-repeat");
		  $('div.views-row-2').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");
		  $('div.views-row-3').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");
		  $('div#block-views-engagements-block_1').find('div.views-row-1').find('div.views-field-body').slideToggle();		  
		  $('div#block-views-engagements-block_1').find('div.views-field-body').hide();
		});
		
		
		$('div#block-views-engagements-block_1').find('div.views-row-2').find('div.views-field-body').hide().end().find('div.views-field-title').click(function() {																																											
		  $('div.views-row-2').find(".title_img").css("background","transparent url(img/minus.gif) no-repeat");
          $('div.views-row-1').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");
          $('div.views-row-3').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");		  
		  $('div#block-views-engagements-block_1').find('div.views-row-2').find('div.views-field-body').slideToggle();
		  $('div#block-views-engagements-block_1').find('div.views-field-body').hide();
		});
		
		
		$('div#block-views-engagements-block_1').find('div.views-row-3').find('div.views-field-body').hide().end().find('div.views-field-title').click(function() {
		  var mt = $('div.c_white_dw').css("margin-top");
		  $('div.views-row-3').find(".title_img").css("background","transparent url(img/minus.gif) no-repeat");
		  $('div.views-row-1').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");
		  $('div.views-row-2').find(".title_img").css("background","transparent url(img/plus.gif) no-repeat");		  
		  $('div#block-views-engagements-block_1').find('div.views-row-3').find('div.views-field-body').slideToggle();
		  $('div#block-views-engagements-block_1').find('div.views-field-body').hide();
		});		
		
	});