// JavaScript Document
        jQuery(document).ready(function($){
				//hide all of the element with class .widget_archive ul
				$(".widget_archive ul").hide();
				//Set the cursor to pointer and background
				$(".widget_archive h3.widget-title").css({'cursor':'pointer','background':'url(/p/wp-content/themes/futuresys/images/box-header-top-plus.png)','padding':'9px 20px 3px 30px'});
				//toggle the componenet with class our-services-content
				$(".widget_archive h3.widget-title").click(function(){
					$(".widget_archive ul").slideToggle(250);
					//Set the background of the header depending on the list being shown or not
					if($(".widget_archive ul").height()<=1){
						$('.widget_archive h3.widget-title').css({
							'background':'url(/p/wp-content/themes/futuresys/images/box-header-top-minus.png)'
						});
					} else {
						$('.widget_archive h3.widget-title').css({
							'background':'url(/p/wp-content/themes/futuresys/images/box-header-top-plus.png)'
						});
					}
				});
         });

