$(document).ready(function(){
	$('.acc_container').hide();						   
    
	$('.acc_trigger').click(function() {
        $('.acc_trigger').removeClass('active');
        $('.acc_container').slideUp('normal');
        if($(this).next().is(':hidden') == true) {
            $(this).addClass('active');
            $(this).next().slideDown('normal');
         } 
          return false;
     });
	 $('.acc_trigger').hover(function() {

		$(this).addClass('hover')},
		function () {
		$(this).removeClass('hover');
		}
	);
	 $('.popup_tab').hover(function() {

		$(this).addLayer('up')},
		function () {
		$(this).removeLayer('up');
		}
	);
});
