// 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() {

	  $("#enquiryform").validate();
   

    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
   
	 $('#slideshow').cycle({ 
  	  fx:    'fade', 
    	speed:  1000 
 	});
	 
});

