function msk(){
document.getElementById('phone-prefix').innerHTML = '(495)';
document.getElementById('phone-number').innerHTML = '545-56-42';
document.getElementById('stores-in-cities').innerHTML = 'В Москве, <a href="#" onClick="vladimir();">Владимире</a>';
 
};

function vladimir(){
document.getElementById('phone-prefix').innerHTML = '(4922)';
document.getElementById('phone-number').innerHTML = '36-30-20';
document.getElementById('stores-in-cities').innerHTML = '<a  href="#" onClick="msk();">В Москве</a>, Владимире</p>';
};


function show_popup(){
document.getElementById("popup").style = "display:block";
}



 //Скрипт очищающий форму от текста при нажатии на нее курсора 


function doClear(theText) {
document.getElementById("search").style.backgroundImage = 'url(/img/search-glow.gif)';
if (theText.value == theText.defaultValue) {
document.getElementById("text").style.color = '#000'; 
theText.value = "";
} }

function doDefault(theText) { 
document.getElementById("search").style.backgroundImage = 'url(/img/search.gif)';
if (theText.value == "") {
theText.value = theText.defaultValue;
} }





$(document).ready(function() {
     $('a.poptoggle').click(function(){
     $('.popup').toggle();
   });
 });

$(document).ready(function() {
     $('a.infotoggle').click(function(){
     $('.info').toggle();
   });
 });






