$(document).ready(function(){
	
		$("#services a.accordion-head1").hover(function() {
                $(this).animate({ color: "#929b62"  }, 400);
        },function() {
                $(this).animate({ color: "#777"  }, 400);
        }),
		$("#services a.accordion-head2").hover(function() {
                $(this).animate({ color: "#cb9183"  }, 400);
        },function() {
                $(this).animate({ color: "#777"  }, 400);
        }),
		$("#services a.accordion-head3").hover(function() {
                $(this).animate({ color: "#e3b648"  }, 400);
        },function() {
                $(this).animate({ color: "#777"  }, 400);
        }),
		

		$("#accordion").accordion({
		active: false,
		collapsible: true,
		autoHeight: false,
		alwaysOpen: false
		});
	
});


