// JavaScript Document

$(document).ready(function(){
	//hide the all of the element with class our-services-content
	$(".our-services-content").hide();
	//Set the cursor to pointer and background
	$(".title").css('cursor','pointer');
	$(".title h2").css('background','url(/banksbrown/images/slices/our-services-wait.gif) 10px 0 no-repeat');
	//toggle the componenet with class our-services-content
	$(".title").click(function(){
		$(this).next(".our-services-content").slideToggle(200);
		//Set the background of the H2 depending on the list being shown or not
		if($('.our-services-content').height()<=1){
			$(".title h2").css('background-image','url(/banksbrown/images/slices/our-services-active.gif)');
		} else {
			$(".title h2").css('background-image','url(/banksbrown/images/slices/our-services-wait.gif)');
		}
	});
});
