/* File: js/layout.js, Ratio: 9.8% */

$.fn.contentBoxToggle=function(openCommand,isInit){if(!openCommand){var openCommand=isInit?!$(this).hasClass('toggleClose'):$(this).hasClass('toggleClose');}
if(openCommand){$(this).removeClass('toggleClose').find('.contentBoxBody').slideDown();}else{$(this).addClass('toggleClose').find('.contentBoxBody').slideUp();}
return $(this);};$(document).ready(function(){$('.contentBox.toggle').contentBoxToggle(false,true).each(function(){$(this).find('h2 a').first().click(function(){$(this).closest('.contentBox').contentBoxToggle();return false;});});});
