/*sfHover = function() {
var sfEls = document.getElementById("page_header_menu_tabs").getElementsByTagName("LI");

for (var i=0; i<sfEls.length; i++) {
	sfEls[i].onmouseover=function() {
		this.className+=" sfhover";
	}
	sfEls[i].onmouseout=function() {
	this.className=this.className.replace(new RegExp(" sfhover\\b"),"");
	}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);*/

function bandeau()
{
			this.champ = document.getElementById("news_mmc");
			this.msg_main = " Notre MAGASIN MAISMOINSCHER.COM à ALBI est ouvert du Mardi au Samedi de 9H à 12H et de 14H à 19H *** ";
			this.end = 0;
			this.begin = -62;
}

print_msg = function (v)
{
			if (v.begin > v.msg_main.length)
						v.begin = 0;
			else
			{
						v.begin ++;
						if (v.begin < 0)
									i = 0;
						else
									i = 		v.begin;
			}
			
			if (v.end > v.msg_main.length)
						v.end = 0;
			else
						v.end ++;
			
						
			if (v.begin < v.end)
						msg = v.msg_main.substring(i,v.end)
			else
						msg = v.msg_main.substring(v.begin, v.msg_main.length-1) + v.msg_main.substring(0,v.end);
						
			v.champ.innerHTML = msg;
			setTimeout('print_msg(v)',200);
}

function begin_news()
{
			v = new bandeau();
			print_msg(v);
}


function popupmmc(url,h,w)
{ 
			var win2 = window.open(url,'popup','height='+h+',width='+w+',status=yes,scrollbars=yes,menubar=no,resizable=yes'); 
}




