function emailQuotation() {
  $('#fm-email').focus(function() {
    if ($(this).val() == 'Enter Your Email Address For A Price' || $(this).val() == 'Please Enter A valid Email Address') {
      $(this).val('');
      if ($(this).hasClass('error'))
        $(this).removeClass('error');
    }
  });
  $('#fm-email').blur(function() {
    if ($(this).val() == '')
      $(this).val('Enter Your Email Address For A Price');
  });
  $('#emailForm').submit(function(e) {
    e.preventDefault();
    var regex = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
    if(regex.test($('#fm-email').val()) == false) {
      $('#fm-email').addClass('error');
      $('#fm-email').val('Please Enter A valid Email Address')
                  return false;
    }
    else {
      var urlString = "/price.php?prod-id=" + $('#fm-prod-id').val() + "&email=" + $('#fm-email').val();
      $.get(urlString + "&ajax=1", function(data){
        $('#emailForm').html('<p class="spacedT padded red">A price for this product has been sent to your inbox.</p>');
      });
    }
  });
}









$(document).ready( function() {
  emailQuotation();

 
  $("a.blank").click(function(e) {e.preventDefault();window.open($(this).attr("href"));});
  

  $('.styleProducts.fab30').hide(); $('#fab30').show();
  var leftHinged = $('.styleProducts.fab30').children('li.hin-left');
  var rightHinged = $('.styleProducts.fab30').children('li.hin-right');
  $('#productColours').html(rightHinged);


  function productColours(e) {
    e.preventDefault();
    $('#fab30 h2').html($(this).clone().attr('title'));
    $('#buyNow').html($(this).parent('li').clone().children('form'));
    $('#buyNow form').append('<p class="price alignRight"><label>&pound;' + $("#buyNow form input[name='price']").val() + '<span class="small"> Inc VAT &amp; FREE Delivery</span></label><input type="submit" value="Add To Shopping Basket &raquo;"></p>');
    $('#fab30 #image').css('background', 'url(' + $(this).children('img').attr('src') + ') no-repeat center center');
  }
  
  function productChange() {
    if ($("#fab30 input[name='hinged']:checked").val() == 'left')
      $('#productColours').html(leftHinged);
    else 
      $('#productColours').html(rightHinged);
    $('#productColours a').click(productColours);
    $('#fab30 h2').html($('#productColours a:first').clone().attr('title'));
    $('#buyNow').html($('#productColours form:first').clone());
    $('#buyNow form').append('<p class="price alignRight"><label>&pound;' + $("#buyNow form input[name='price']").val() + '<span class="small"> Inc VAT &amp; FREE Delivery</span></label><input type="submit" value="Add To Shopping Basket &raquo;"></p>');
    $('#fab30 #image').css('background', 'url(' + $('#productColours img:first').attr('src') + ') no-repeat center center');
  }
  
  productChange();
  $('#productColours a').click(productColours);
  $("#fab30 input[name='hinged']").change(productChange);

  
  


  
  
  $('.basket form input[type="submit"]').hide();
  $('.basket form input[type="radio"]').change(function() {
    $(this).parents('form').submit();
  });

  


  
});
