$(document).ready(
                  function(){
                    // remove unwanted tabs
                    if($('h1').html() == ' Search' || $('h1').html() == 'Search'){
                      $('ul.primary li:first').css('display', 'none'); // Remove the content tab
                      $('ul.primary li:nth-child(1)').css('display', 'none'); // Remove the Digital NZ tab
                      $('ul.primary li:nth-child(2)').css('display', 'none'); // Remove the User tab
//                      $('ul.primary li:last').css('display', 'none');
                    }
                    
                    // for ie - remove the value of the submit button to stop
                    // text flowing over background (ie doesn't recognise
                    // transparent as a text colour)
//                    $('form#search_form input#edit-submit').attr('value', '');
                  });
