$(document).ready( function() {
   
    // open external link in new tab/window
    // use rel="external" instead of target="_blank"
    $('a[rel="external"]').click( function() {
        this.target = "_blank";
    });
    
    //email replacement
   	$("span.mailto").each(function(){
   	  exp = $(this).text().search(/\((.*?)\)/) != -1 ? new RegExp(/(.*?) \((.*?)\)/) : new RegExp(/.*/);
   	  match = exp.exec($(this).text());
   	  addr = match[1] ? match[1].replace(/ at /,"@").replace(/ dot /g,".") : match[0].replace(/ at /,"@").replace(/ dot /g,".");
   	  emaillink = match[2] ? match[2] : addr;
   	  subject = $(this).attr('title') ? "?subject="+$(this).attr('title').replace(/ /g,"%20") : "";
       $(this).after('<a href="mailto:'+addr+subject+'">'+ emaillink + '</a>');
   		$(this).remove();
   	});

    //hide email
   	function hide_EmailForm() {
      var s1 = 'info';
      var s2 = '@';
      var s3 = 'motorisedgolfcars.com';
      document.write('<input type="hidden" name="Em' + 'ail_To" value="' + s1 + s2 + s3 + '" />');
    }

    //form validation
    $("#enquiryform").validate();

 	  //slideshow
    $('#slideshow').cycle({fx: 'fade', timeout: 5000, speed: 2000});
   
   //remove bottom border on last on list
   $('#products li:last').css('border', "none");
   $('#clients_testimonials li:last').css('border', "none");
   
   //hide and show for details page
   $('.hide_me').hide();
   $('#description').show();
   
   $('a.show_me').click(function() {
     var show_me = $(this).attr('href');
     $(show_me).slideToggle('normal');
     $('.hide_me').hide();
     return false;
   });
   
   
   
});