/**
 * лаборатория масел
 */
jQuery(document).ready(function(){
	//добавляем класс к элементу HTML при включенном
	//у клиента Javascript
	jQuery('html').eq(0).addClass('js_on');
	jQuery('a', '#accord').each(function(){
        /*if ($(this).next('ul').length > 0)
            $(this).css({
                color: '#000'
            });*/
        $(this).click(function(event){
            if ($(this).next('ul').length > 0) {
                event.preventDefault();
				$(this).addClass('selected');
	            $(this).next().slideDown('slow');
	            $('ul', $(this).parent().siblings()).slideUp('slow');
	            $('a', $(this).parent().siblings()).removeClass('selected');
            }
        })
    })
	jQuery('#overlay').height(jQuery('body').eq(0).height()+'px')
})