var selected_tab = 0;
var number_of_thumbnails_per_slide = 6;
var number_of_thumbnail_slides = 0;
var number_of_thumbnails = 2;
var currently_selected_thumbnail_slide = 1;
var product_feature_definitions = new Array(new Array(899, 'Vehicle Sound System', 'This refers to what kind of sound system the vehicle has. Premium audio systems are generally name brand systems (such as JBL, Bose, Rockford Fosgate, etc) that have been installed inside a vehicle when it leaves the factory. Often they more advanced systems, complex wiring, factory amplifiers, and other features that can make installing aftermarket component difficult.'), new Array(893, 'Main Harness Function', 'Different installations on different vehicles require different harnesses. This type is what the harness is considered. Each wiring harness we sell serves a purpose such as installing an aftermarket car stereo, integrating an aftermarket amplifier with your factory car stereo, connecting Bluetooth to your factory car stereo, and more.'), new Array(2307, 'Additional Harness Features', 'The various features that the wiring harness provides to your car stereo and/or audio system.'), new Array(701, 'Compatible Vehicle Make', 'Allows you to view only items that are compatible with your vehicle’s make. Does not guarantee that it will work with your vehicle year or model.'), new Array(2305, 'Compatible Vehicle Make and Model', 'The model of vehicle that this vehicle specific product is designed for. Please keep in mind that engine variations can affect the compatibility of the products.'), new Array(903, 'Factory System Amplification', 'This refers to the factory sound system and whether the item is compatible with amplified or non-amplified systems.'), new Array(896, 'Compatible Premium Audio Systems', 'Some vehicles have higher end audio systems installed in them by the manufacturer. This specifies which premium audio systems this item is compatible with.'), new Array(895, 'On-Star Compatible', 'This means that the harness is compatible with vehicles that have On-Star built-in.'), new Array(897, 'CAN-BUS Compatible', 'CANBUS Ballasts ensure compatibility with ALL vehicle makes and models without the need for additional accessories. In addition, they have built-in Anti-Flickering Capacitors to help prevent lighting issues caused by voltage spikes and drops by stabilizing the power.'), new Array(901, 'GM-LAN Compatible', 'This means that the item is compatible with GM-LAN systems.'), new Array(898, 'Compatible with Aftermarket Navigation Systems', 'This means that the item is made to work with aftermarket systems with navigation. Typically, this means that the harness has wires that are used with GPS navigation systems, such as VSS wires and others. Please read the product description for full details of this feature.'), new Array(900, 'Chime Retention', 'This means that the harness is able to retain the vehicles chimes.'), new Array(2267, 'Promotions', 'Promotions we have offer More Ways to Shop for items that are on clearance, last chance, special offer and sales, Made in America, and more!'));
function $(id) {
return document.getElementById(id);
}
function get_viewport_height()
{
return window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
}
function get_viewport_width()
{
return window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
}
function get_scroll_offset()
{
return window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
}
function get_position_y( input_element )
{
position = 0;
while (input_element != null)
{
position += input_element.offsetTop;
input_element = input_element.offsetParent;
}
return position;
}
function get_position_x( input_element )
{
position = 0;
while (input_element != null)
{
position += input_element.offsetLeft;
input_element = input_element.offsetParent;
}
return position;
}
function move_thumbnail_slideshow(move)
{
current_slide = currently_selected_thumbnail_slide;
new_slide = current_slide + move;
if (new_slide > number_of_thumbnail_slides || new_slide < 1)
{
//invalid slide
return;
}
$('thumbnail_slide_'+current_slide).style.display = 'none';
$('thumbnail_slide_'+new_slide).style.display = 'block';
if (new_slide == 1)
{
$('thumbnail_slideshow_arrow_left').src = 'https://www.sonicelectronix.com/images/Pricetronic_static/picture_nav_left_inactive.gif';
$('thumbnail_slideshow_arrow_left').style.cursor = 'default';
}
else
{
$('thumbnail_slideshow_arrow_left').src = 'https://www.sonicelectronix.com/images/Pricetronic_static/picture_nav_left_active.gif';
$('thumbnail_slideshow_arrow_left').style.cursor = 'pointer';
}
if (new_slide < number_of_thumbnail_slides)
{
$('thumbnail_slideshow_arrow_right').src = 'https://www.sonicelectronix.com/images/Pricetronic_static/picture_nav_right_active.gif';
$('thumbnail_slideshow_arrow_right').style.cursor = 'pointer';
}
else
{
$('thumbnail_slideshow_arrow_right').src = 'https://www.sonicelectronix.com/images/Pricetronic_static/picture_nav_right_inactive.gif';
$('thumbnail_slideshow_arrow_right').style.cursor = 'default';
}
currently_selected_thumbnail_slide = new_slide;
photo_start = ((currently_selected_thumbnail_slide-1) * number_of_thumbnails_per_slide) + 1;
photo_end = currently_selected_thumbnail_slide * number_of_thumbnails_per_slide;
if (photo_end > number_of_thumbnails)
{
photo_end = number_of_thumbnails;
}
$('current_photos').innerHTML = photo_start+'-'+photo_end;
}
function tab_mouseover(tab_id)
{
if (tab_id == selected_tab)
{
return;
}
/** $('info_tab'+tab_id+'_left').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_hover_l.gif')";
$('info_tab'+tab_id+'_right').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_hover_r.gif')";
$('info_tab'+tab_id+'_h2').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_hover_m.gif')";
**/
}
function tab_mouseout(tab_id)
{
if (tab_id == selected_tab)
{
return;
}
/**
$('info_tab'+tab_id+'_left').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_l.gif')";
$('info_tab'+tab_id+'_right').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_r.gif')";
$('info_tab'+tab_id+'_h2').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_m.gif')";
**/
}
function scrollElement(elem,pos){
elem.scrollLeft = pos;
}
function scroll_image(image_id){
scrollElement($('flexbox'),get_position_x($('image_'+image_id)));
}
function tab_select(tab_id)
{
//unselect currently selected tab
/** $('info_tab'+selected_tab+'_left').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_l.gif')";
$('info_tab'+selected_tab+'_right').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_r.gif')";
$('info_tab'+selected_tab+'_h2').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_off_m.gif')";
**/
$('tab_content'+selected_tab).style.display = 'none';
//$('info_tab'+selected_tab).style.cursor = 'pointer';
$('info_tab'+selected_tab).parentNode.className='tab';
/**
$('info_tab'+tab_id+'_left').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_on_l.gif')";
$('info_tab'+tab_id+'_right').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_on_r.gif')";
$('info_tab'+tab_id+'_h2').style.backgroundImage = "url('https://www.sonicelectronix.com/images/Pricetronic_static/tab_on_m.gif')";
**/
$('tab_content'+tab_id).style.display = 'block';
$('info_tab'+tab_id).parentNode.className+=' active';
selected_tab = tab_id;
}
var windowwidth = get_viewport_width();
console.log(windowwidth);
var sliderwidth = windowwidth;
var scrollpos=0;
var currentIndicator=0;
function scrollSlider(e){
scrollpos = e.srcElement.scrollLeft;
selectedIndicator=Math.round(scrollpos/sliderwidth);
console.log(selectedIndicator);
$('indicator'+currentIndicator).className='indicator';
$('indicator'+selectedIndicator).className='indicator active';
currentIndicator = selectedIndicator;
}
var menuwidth=0;
function TabsMinify(){
$('flexbox').setAttribute("onscroll","scrollSlider(event);");
}
function show_feature_description(feature_id, caller)
{
feature_description = 'Invalid feature';
feature_name ='Invalid feature';
for (i=0; i
page_bottom)
{
top_position -= (bottom_position - page_bottom);
}
document.getElementById('feature_description_div').style.top = top_position + 'px';
document.getElementById('feature_description_div').style.visibility = 'visible';
document.getElementById('feature_description_div').style.left = (get_position_x(caller) + caller.offsetWidth * 0 + 100 - document.getElementById('feature_description_div').offsetWidth * 0 ) + 'px';
}
function hide_feature_description()
{
document.getElementById('feature_description_div').style.visibility = 'hidden';
}
function show_free_shipping_table(caller)
{
hide_fast_shipping_table();
caller_y_position = get_position_y(caller);
caller_rightmost_position = get_position_x(caller) + caller.offsetWidth;
desired_left_position = caller_rightmost_position - $('free_shipping_information_table').offsetWidth;
$('free_shipping_information_table').style.top = caller_y_position + 'px';
$('free_shipping_information_table').style.left = desired_left_position + 'px';
$('free_shipping_information_table').style.visibility = 'visible';
}
function hide_free_shipping_table()
{
$('free_shipping_information_table').style.visibility = 'hidden';
}
function show_fast_shipping_table(caller)
{
hide_free_shipping_table();
caller_y_position = get_position_y(caller);
caller_rightmost_position = get_position_x(caller) + caller.offsetWidth;
desired_left_position = caller_rightmost_position - $('fast_shipping_information_table').offsetWidth;
$('fast_shipping_information_table').style.top = caller_y_position + 'px';
$('fast_shipping_information_table').style.left = desired_left_position + 'px';
$('fast_shipping_information_table').style.visibility = 'visible';
}
function hide_fast_shipping_table()
{
$('fast_shipping_information_table').style.visibility = 'hidden';
} Product SKU: 125853 ID: axmazcam6v Car Audio & Video Car Security & Safety Marine Powersports Search
Axxess Mazda Backup Camera Harness (AX-MAZCAM-6V)
Mazda Backup Camera Retain/Add-On 07-15
0
1
General Features: Retains backup camera with aftermarket radio Allows an aftermarket camera to be added to the factory screen Includes AX-CAM6V 12-volt to 6-volt converter Authorized Internet Dealer 1-year Manufacturer's Warranty
Vehicle compatibility Mazda 2013-up CX-5 2007-2012 CX-7 2007-2015 CX-9 2011-2015 Mazda 6 Check out the product manual International customers
are responsible for any and all customs, import duties, brokerage fees, and taxes. They are not included in the item price or stated shipping charges.
Additional shipping fees are required for locations including, but not limited to: PO Boxes, APO/FPO locations, Alaska, Hawaii, Puerto Rico, Guam, Canada and other countries outside the USA.
Harness Features N/A Connect/Install an Aftermarket Car Stereo Retains Backup Camera Mazda Mazda 6 Mazda CX-5 Mazda CX-7 Mazda CX-9
Warranty Parts Warranty Duration 1 year Labor Warranty Duration 1 year Warranty Provider Manufacturer
Policies for US and Canadian Customers
Item Specific Return Policy
Standard Return Policy Return for refund within: 30 days Return for replacement within: 30 days Standard Return Policy Overview
You may return merchandise purchased from Sonic Electronix for a refund or a replacement, provided that the procedures and requirements are followed. All returns require a return merchandise authorization (RMA) number. An RMA number must be issued within 30 calendar days after the date of purchase. An RMA number is valid for 14 calendar days after it is issued. Refunds
A processing fee of 10 percent will apply to the value of merchandise returned for a refund. Refunds are applied to the payment method used at the time of purchase 5-10 days after our receipt of the returned merchandise. We will only refund the value of the merchandise returned, not the shipping cost. On items with free shipping returned for a refund, the original shipping cost that we paid the shipping courier will be deducted from your refund. Exchanges
If you purchased a product that you wish to exchange for an alternate item, you can return the item for a refund and simply place a new order for the item you desire. We do not apply store credit to your new purchase. If we see a new purchase for equal or greater value of your return, we will waive the 10 percent processing fee. Defective Merchandise
Merchandise that is discovered to be defective upon receipt will be replaced. You may also return defective merchandise for a refund; however, a 10 percent processing fee will apply. The processing fee will only apply if you choose to return the merchandise for a refund. No fee will be assessed if we are permitted to resolve the issue by replacing your defective merchandise. Damaged Merchandise
All packages are inspected for damage prior to leaving our warehouse. If your merchandise is damaged during shipment by the shipping courier, please contact us immediately as we must be informed within 10 calendar days from the date of receipt for all damage/shipping related claims. Damaged merchandise can be replaced with the same model only. You may also return damaged merchandise for a refund; however, a 10 percent processing fee will apply. The processing fee will only apply if you choose to return the merchandise for a refund. No fee will be assessed if we are permitted to resolve the issue by replacing your damaged merchandise. Return Shipping
Return shipping cost (the cost to send merchandise back to our store) is comparable to your cost of driving to any store for returning an item, which is not reimbursable. Therefore, we do not reimburse any return shipping cost.
If an item you received is defective, we will definitely replace the item with a new one; however, we do not cover or reimburse the shipping cost for returning defective merchandise back to our store. We will ship the replacement product to you at our cost, and use every good measure to ensure that the replacement order is processed quickly. Replacement Terms
We will send a product replacement for an authorized return following the completion of receiving and inspection at our facility. The replacement will ship within four business days following our receipt of your return (excluding weekends and national holidays). We do not send advance replacements or replacements before we receive and inspect the returned merchandise.
To receive a replacement quicker, you may place a new order for the same item (shipping not included), and we will issue a refund for the full value of the returned product (including shipping), upon completion of our return process. Returning Items
Please send us a message through Pricetronic or contact us by phone at 1-877-BUY-SONIC (1-877-289-7664, Monday-Friday, 7:00AM-5PM Pacific Time) to receive an RMA number. You will be required to complete our product return form which will also provide helpful instructions for your return.
All returned merchandise must be in original condition, and must include the original factory box (UPC bar codes and serial numbers must be intact) and factory packaging (e.g. foam, plastic, wrappings, etc.), peripherals (e.g. battery, charger, cords, straps, etc.), included warranty cards (without markings), and all instruction booklets and paperwork. The RMA number or any other inscriptions must not be written or printed on the product box or packaging. We will not process the return if any of these conditions are not followed. Remember, returned merchandise that is lost or damaged during transit is solely the shipper's responsibility (which is you when you return a product to us). It is important to save the tracking information and to properly insure all merchandise being returned to Sonic Electronix. Return Exceptions Although our return policy is quite flexible on most items, there are some exceptions, as written below: Any product not purchased from Sonic Electronix Any product without a valid, readable serial number, including but not limited to products with missing, damaged, altered, or otherwise unreadable serial number Any product that is returned without all original packaging and accessories, including the retail box, manuals, cables, and all other items originally included with the product Any product from which the UPC code has been removed from its packaging Any product that exhibits physical damage or abuse Any product for which you have submitted a mail-in rebate
Products that are not eligible for return for any of the above reason(s) will be sent back to you at your cost and expense.
Shipping Policies
The default shipping rate and method listed are for residential or commercial destinations within the continental 48 United States (PO Boxes not included).
Additional shipping fees are required for all other locations including, but not limited to:
• PO Boxes, APO/FPO locations, Alaska, Hawaii, Puerto Rico, Guam, Canada and other countries outside the USA.
We will make every attempt to process and ship all items within 2 business days of your cleared payment. Following order processing, please allow proper time for delivery. UPS Ground shipments arrive within 3-7 business days. To provide the most affordable rates, small items shipped via Standard Flat Rate Shipping or USPS First Class Mail ship via a joint effort by DHL and USPS and are delivered within 7-10 days from the date of shipment.
We will update your Pricetronic record with tracking information and send an e-mail confirming shipment. If 3 business days have passed since you sent payment and you do not receive an update through Pricetronic or a tracking number via e-mail, please contact us immediately through Pricetronic.
International customers are responsible for any and all customs, import duties, brokerage fees, and taxes. They are not included in the item price or stated shipping charges.
Payments Accepted
PayPal is accepted for all customers. If you need checkout assistance, please contact us during our business hours through Pricetronic.
Warranty Information Sonic Electronix Return and Warranty Policy Refunds are available within 60 days of the original date of purchase. All refunds will have up to a 20% restocking fee assessed, and the outgoing shipping costs that were paid will also be deducted from the refund total. If you select to exchange your item, and the returned item is still factory sealed, there will be no restocking fee assessed. Please refer to the manufacturer if you are outside of the original 60 from purchase and need repair.
Product Summary
Manufacturer:
Model number:
AX-MAZCAM-6V UPC
:
086429330881
Weight:
2.00 lb
Internal SKU:
axmazcam6v
Internal Product ID:
125853 FAST SHIPPING SHIPS THE SAME DAY When Paid by 1:00 PM EST *restrictions apply, click for more info FREE SHIPPING ON MOST ORDERS *restrictions apply, click for more info EXPERIENCED • American Owned & Operated • In-House Product Experts • Selling on Ebay since 2000 • Internet Retailer Top 500
© 2000– 2017 Sonic Electronix, Inc. - 15148 Bledsoe St. Unit B, Sylmar, CA 91342 USA
All manufacturer names, model numbers, pictures and product descriptions are for the sole use of describing the product(s) for sale.
All trademarks and trade names are the property of their respective trademark holders.
Prices, specifications, and images are subject to change without notice. Free Shipping Information
Our free shipping via UPS Ground offer applies only to residential or commercial destinations within the continental 48 United States excluding PO Boxes and APO/FPO Addresses.
Shipments to PO Boxes, APO/FPO, Alaska, Hawaii, Puerto Rico, Guam, USVI, Canada and other countries will be shipped at an additional charge. Please use the Pricetronic shipping calculator to find your rate. Fast Shipping Information
Same day shipping for orders paid by Tuesday-Friday (Pay by 1:00PM EST)
Orders paid by Saturday and Sunday will ship Monday.
Orders paid on Monday will ship Monday or Tuesday.
Orders ship via UPS Ground within the 48 USA and arrive within 2–7 business days, depending on your distance from California.
Shipments to PO Boxes, Alaska, Hawaii, or outside the 48 USA do not have a guaranteed time for arrival as they will ship USPS. Protect Your Product With a Consumer Priority Service Warranty
Returns Accepted for this item if it's within 30 Days