
$(document).ready( function() {
   
    $("#enquiryform").validate();

    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });
    
    //add class to product listing
    $("li.product:odd").addClass("no-right-margin");
    
 	  //slideshow
    $('#slideshow').cycle({fx: 'fade', timeout: 5000, speed: 2000});
    
    $("input.textfield").focus(function() {
      $(this).attr('value','')
    });
    
    // 
   
});
