$j(document).ready(function(){

/* Contact Us form - hides postcode and state fields if user is not from Australia */
  var select_id = "#" + $j("li.form_country select").attr('id');
  $j(select_id).change(function () {
    if ( $j(this).val() == 'au' ) {
      $j('li.form_hide').slideDown();
    }
    if ( $j(this).val() != 'au' ) {
      $j('li.form_hide').slideUp();
    }
  });

/*adds target blank to each external link class a tag */
  $j('a.external_link').attr('target','_blank');

/* removes row_border class from last sub_row in features (column template) */
$j('div.sub_row:last').removeClass('row_border');


});
