﻿/*
Functions for third-party sites
Currently used by: http://www.fiat-accessories.com and http://used-cars.fiat.com
*/

//Resizes the navigation iFrame to fit the mega nav
//the function is called from iframeProxy.htm located on the third-party site
function resizeIframe(action) { 
    if (action == 'open') {
        document.getElementById('fiat-third-party-nav').style.height = '525px';
    }
    if (action == 'close') {
        document.getElementById('fiat-third-party-nav').style.height = '80px';
    }
}


