/*
* File: accordion.js
* Authors: Soh Tanaka
* Copyright: 2010 Soh Tanaka
* Contact: http://www.sohtanaka.com/
* Date: 10/05/10
* Updated: 12/02/11
* Description: jquery accordion with all elements closed
* Link: http://www.sohtanaka.com/web-design/simple-accordion-w-css-and-jquery/
*
* BSEM Marketing Limited
* Registered number 6783507
* Registered in England and Wales
*
*/

$(document).ready(function(){
$('.acc_container').hide();
$('.acc_trigger').mouseover(function(){
if( $(this).next().is(':hidden') ) {
$('.acc_trigger').removeClass('active').next().slideUp();
$(this).toggleClass('active').next().slideDown();
}
return false;
});
});
