// open external link in new tab/window

// use rel="external" instead of target="_blank"

$(document).ready( function() {

  $("#enquiryform").validate();


    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
   
    $('#slideshow').cycle({fx: 'fade', timeout: 5000, speed: 2000});
    $('table#subcat tr:last').css('border', 'none');
    
    $('input.update_button').mouseover(function() {
      $(this).css('background-position', '0 -26px')
      .mouseout(function() {
        $(this).css('background-position', '0 0')
      }); 
    });
    $('input#enquire_submit').mouseover(function() {
      $(this).css('background-position', '0 -26px')
      .mouseout(function() {
        $(this).css('background-position', '0 0')
      }); 
    });
});