﻿
$(document).ready(function(){var itemCount=$('select.InfinitiCentreControl').children().size();switch(itemCount){case 0:break;case 1:break;case 2:var DealerID=$('select.InfinitiCentreControl option:nth-child(2)').val();ShowDealerAddress(DealerID);$('select.InfinitiCentreControl').val(DealerID);$('select.InfinitiCentreControl').hide();$('select.InfinitiCentreControl').removeClass();break;default:$('select.InfinitiCentreControl').change(ShowDealerAddress_EventHandler);$('div.DealerAddress').hide();break;}});function ShowDealerAddress_EventHandler()
{var DealerID=$('select.InfinitiCentreControl').val();ShowDealerAddress(DealerID);SendLiveChatVariable();}
function ShowDealerAddress(DealerID){var p=$('div.DealerAddress');for(var i=0;i<InfinitiCentreAddresses.length;i++){if(InfinitiCentreAddresses[i].DealerID==DealerID){var address=InfinitiCentreAddresses[i].AddressLines;if(p.is(':visible')){p.fadeOut('fast');p.html(address);p.fadeIn('fast');}else{p.html(address);p.slideDown();}
return;}}
p.slideUp();}
function SendLiveChatVariable(){if(typeof(lpSendData)!='undefined'){var dealer=$('select.InfinitiCentreControl :selected').text();lpSendData('page','Centre',dealer);}}
