﻿var ua = navigator.userAgent;
var isiPad = /iPad/i.test(ua) || /iPhone/i.test(ua);
var pressUrl;
var contactUrl;
var ipadCorrection;

var ipadModification = function () {
    if (isiPad) {

        //Top Navigation Links
        if ($('divmainNav')) {
            $('divmainNav').getElements('div').each(function (element, index) {
                if (element.get('id') == 'divAboutLigneRoset')
                    element.setStyle('display', 'none');
                else
                    element.setStyle('margin-bottom', '4px')
            });
        }

        //World Region
        if ($$('.worldRegionLink'))
            $$('.worldRegionLink').setStyle('padding-bottom', '0');

        //Footer site map navigation
        if ($$('ul.footerItems')) {
            $$('ul.footerItems li').each(function (element, index) {
                var elementId = element.get('id');
                if (elementId == 'liSiteMap' || elementId == 'liServices')
                    element.setStyle('display', 'none');
            });
        }
        if ($$('div.ShortPageNumbers'))
            $$('div.ShortPageNumbers a').setStyle('margin-right', '5px');

        //Product Menu
        if ($$('div.contentMenu'))
            $$('div.contentMenu div').setStyles({ 'margin-bottom': '5px' })

        //Content Managed
        if ($$('div.menuGroup'))
            $$('div.menuGroup div.menuItem').setStyle('margin-bottom', '5px');

        //Designer
        if ($$('td.designerSelectorProfileLink'))
            $$('td.designerSelectorProfileLink').setStyle('padding-bottom', '5px');

        if ($('divDesignerMenu'))
            $('divDesignerMenu').getElements('div').setStyle('margin-bottom', '5px');

        //History Links
        if ($('divTimeline')) {
            $('divTimeline').setStyle('display', 'none');
        }

        //Catalogue Links
        if ($('divECatalogue')) {
            $('divECatalogue').setStyle('display', 'none');
        }

        //Room planner link
        if ($$('a.roomPlannerLink'))
            $$('a.roomPlannerLink').setStyle('display', 'none');

        //Product footer
        if ($$('a.lnkSendToFriend'))
            $$('a.lnkSendToFriend').setStyle('display', 'none');

        if ($$('a.lnkPrint'))
            $$('a.lnkPrint').setStyle('display', 'none');

        //Stores
        if ($('stores'))
            $('stores').getElements('div.store').setStyle('margin-bottom', '5px');
    }
    else {
        //Hide download links
        if ($('divCatalogueDownload')) {
            $('divCatalogueDownload').setStyle('display', 'none');
        }

    }
};


ipadCorrection = ipadModification.periodical(10);


$(window).addEvent('domready', function () {
    setTimeout('stopCorrection()', 200);
});

function stopCorrection() {
    if (ipadCorrection) {
        $clear(ipadCorrection);
        ipadCorrection = null;
    }
}



