// JavaScript Document
/*$(document).ready(function () {
    $('.link_section_one_data').hide();
    $('.link_section_one h2').toggle(
    function () {
        //$(this).next('.link_section_one_data').slideDown();
        $(this).next('.link_section_one_data').css('opacity', 0).slideDown('slow').animate({
            opacity: 1
        }, {
            queue: false,
            duration: 'slow'
        });
        $(this).addClass('close');
    }, function () {
        $(this).next('.link_section_one_data').slideUp();
        $(this).removeClass('close');
    }); // end toggle 
});*/

$(document).ready(function() {
  $("#accordion").accordion({
    header:'h2', 
    active:'.open',
	autoHeight: false
	});
  var gbOptions = {
    gbWidth: 1000,
    gbHeight: 800
  };
	$('.popup').greybox(gbOptions);
});

