﻿/* Martial Antics Behaviour */

$(document).ready(function () {

    $('.product').mouseover(function () {
        if ($(this).parent().hasClass('featured_products'))
            $(this).removeClass('blue').addClass('red');
        else
            $(this).removeClass('grey').addClass('blue');
    });

    $('.product').mouseout(function () {
        if ($(this).parent().hasClass('featured_products'))
            $(this).removeClass('red').addClass('blue');
        else
            $(this).removeClass('blue').addClass('grey');
    });

    $('#SameAsBilling').click(function () {
        if ($(this).is(':checked')) {
            $('#DeliveryFirstName').val($('#BillingFirstName').val());
            $('#DeliveryLastName').val($('#BillingLastName').val());
            $('#DeliveryAddressLine1').val($('#BillingAddressLine1').val());
            $('#DeliveryAddressLine2').val($('#BillingAddressLine2').val());
            $('#DeliveryTownCity').val($('#BillingTownCity').val());
            $('#DeliveryCounty').val($('#BillingCounty').val());
            $('#DeliveryPostCode').val($('#BillingPostCode').val());
        } else {
            $('#DeliveryFirstName').val('');
            $('#DeliveryLastName').val('');
            $('#DeliveryAddressLine1').val('');
            $('#DeliveryAddressLine2').val('');
            $('#DeliveryTownCity').val('');
            $('#DeliveryCounty').val('');
            $('#DeliveryPostCode').val('');
        }
    })

    $('a.size_guide').colorbox();

});


