jQuery(document).ready(function() {
    jQuery("#shippingSameBilling").change(function(){
        jQuery("[title='shippingfirstname']").val(jQuery("[title='billingfirstname']").val());
        jQuery("[title='shippinglastname']").val(jQuery("[title='billinglastname']").val());
        jQuery("[title='shippingaddress']").val(jQuery("[title='billingaddress']").val());
        jQuery("[title='shippingcity']").val(jQuery("[title='billingcity']").val());
        jQuery("[title='shippingstate']").val(jQuery("[title='billingstate']").val());
        jQuery("[title='shippingpostcode']").val(jQuery("[title='billingpostcode']").val());
        jQuery("#wpsc_checkout_form_21").val(jQuery("#wpsc_checkout_form_7").val());
    });

    // iOS Hover Event Class Fix
    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
    jQuery("#nav ul .navcollection").click(function(){
        jQuery("#navcollectionlist").addClass('ios');
    });
    }

});
