// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// open external link in new tab/window
// use rel="external" instead of target="_blank"

$(document).ready( function() {

	  $("#quoteform").validate();
	  $("#enquiryform").validate();
   

    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
   
});

