$(document).ready(function() { //Initalise Accordian boxes if present if($(".accordionBox").length) initAccordionBox(); //Initalise Rulings or Findings Datatbales if present if($("#coroners_findings").length) initFindingsDatatable(), fixDatatablesHtml(); if($("#coroners_rulings").length) initRulingsDatatable(), fixDatatablesHtml(); }); function initFindingsDatatable() { oTable = $('#coroners_findings').dataTable( { "fnDrawCallback": function ( oSettings ) { if ( oSettings.aiDisplay.length == 0 ) { return; } var nTrs = $('#coroners_findings tbody tr'); var iColspan = nTrs[0].getElementsByTagName('td').length; var sLastGroup = ""; for ( var i=0 ; i><"minHeight"t><"bottom"ip>', "aLengthMenu": [[10, 25, -1], [10, 25, "All"]], "bFilter": true, "bInfo": true, "bAutoWidth": false, "sScrollY": 310, "bJQueryUI": true, "bSort": true, //"aaSortingFixed": [[ 0, 'desc' ]], "aaSorting": [[ 1, 'desc' ]], //initial sorting "sPaginationType": "full_numbers", "aoColumns": [ { "bVisible": false }, { "sType": "sort-date" }, null, { "sType": "numeric" }, null, null, { "bVisible": false } ], "oLanguage": { "sLengthMenu": "Show _MENU_ findings per page", "sZeroRecords": "No matching findings found", "sInfo": "Showing _START_ to _END_ of _TOTAL_ findings", "sInfoEmpty": "Showing 0 to 0 of 0 courses", "sInfoFiltered": "(filtered from _MAX_ total findings)", "sSearch": "Search", "oPaginate": { "sPrevious": " ", "sNext": " ", "sFirst": " ", "sLast": " " } } }); }; function initRulingsDatatable() { oTable = $('#coroners_rulings').dataTable( { "fnDrawCallback": function ( oSettings ) { if ( oSettings.aiDisplay.length == 0 ) { return; } var nTrs = $('#coroners_rulings tbody tr'); var iColspan = nTrs[0].getElementsByTagName('td').length; var sLastGroup = ""; for ( var i=0 ; i><"minHeight"t><"bottom"ip>', "aLengthMenu": [[10, 25, -1], [10, 25, "All"]], "bFilter": true, "bInfo": true, "bAutoWidth": false, "sScrollY": 310, "bJQueryUI": true, "bSort": true, //"aaSortingFixed": [[ 0, 'desc' ]], "aaSorting": [[ 1, 'desc' ]], //initial sorting "sPaginationType": "full_numbers", "aoColumns": [ { "bVisible": false }, { "sType": "sort-date" }, null, { "sType": "numeric" }, null, { "bVisible": false } ], "oLanguage": { "sLengthMenu": "Show _MENU_ rulings per page", "sZeroRecords": "No matching rulings found", "sInfo": "Showing _START_ to _END_ of _TOTAL_ rulings", "sInfoEmpty": "Showing 0 to 0 of 0 courses", "sInfoFiltered": "(filtered from _MAX_ total rulings)", "sSearch": "Search", "oPaginate": { "sPrevious": " ", "sNext": " ", "sFirst": " ", "sLast": " " } } }); }; function fixDatatablesHtml() { $('div, span, tr, td, th').css('width', ''); $(".dataTables_scrollHeadInner th").each(function () { $(this).html($(this).html().replace($(this).text(),'
'+$(this).text()+'
')); }); }; //Virtual Tour $(document).ready(function() { $('.clickableLink').bind('click', function() { $(this).toggleClass('active').siblings().removeClass('active'); }); $('.clickableLink').bind('mouseover', function() { $(this).addClass('active').siblings().removeClass('active'); }); $('.clickableLink').bind('mouseout', function() { $(this).removeClass('active').siblings().removeClass('active'); }); }); $(window).load(function() { setTimeout("$('.second').fadeIn()", 2100); setTimeout("$('.third').fadeIn()", 2500); setTimeout("$('.fourth').fadeIn()", 2900); setTimeout("$('.fifth').fadeIn()", 3300); setTimeout("$('.sixth').fadeIn()", 3700); setTimeout("$('.clickableLink').fadeIn(1000)", 4100); });