preload = [
"img/m_home_a.gif","img/m_about_a.gif","img/m_watches_a.gif","img/m_sell_a.gif","img/m_feedback_a.gif","img/m_contacts_a.gif","img/m_home_still.gif","img/m_about_still.gif","img/m_watches_still.gif","img/m_sell_still.gif","img/m_feedback_still.gif","img/m_contacts_still.gif","img/li_active.gif"
];

function preloadImages(){
 var tmpArray = new Array();

 for (var i=0; i< preload.length; i++){
   tmpArray[i] = new Image();
   tmpArray[i].src = preload[i];
 };

};

function roll(name, src){
 if(document.images){
   document.images[name].src = src; 
 };
};

function popwin(newURL) 
{
  window.open(newURL, "newwin", "toolbar=no,width=500,height=530,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no");
};