document.writeln(''); var content=''; var boxwidth=0; var boxheight=103; var iw = 140; document.write('');
document.writeln(''); content+='<a href= target=_self><img src=http://www.bellafoodsinc.com/images/pic21.jpg width='+iw+' height='+boxheight+' border=0></a>'; boxwidth+=iw; document.write('');
document.writeln(''); content+='<a href= target=_self><img src=images/pic22.jpg width='+iw+' height='+boxheight+' border=0></a>'; boxwidth+=iw; document.write('');
document.writeln(''); content+='<a href= target=_self><img src=./images/pic23.jpg width='+iw+' height='+boxheight+' border=0></a>'; boxwidth+=iw; document.write('');
document.writeln(''); content+='<a href= target=_self><img src=./images/pic24.jpg width='+iw+' height='+boxheight+' border=0></a>'; boxwidth+=iw; document.write('');

/*******************************************
Horizontal Scroller (Marquee Replacement) v-1.2
Brian Gosselin - http://scritpasylum.com
Version info:
V-1.0: Initial release.
V-1.1: Fixed a bug where the content causes parent container
       element to shrink and grow in NS6.
V-1.2: Added selectable support for pausing the scrolling
       when box moused-over.
*******************************************/

var bcol=Number(16777215).toString(16);
var t=0; t = bcol.length;
for (var i=0; i<6-t; i++) bcol = '0'+bcol;

var boxcolor="#"+bcol;
var speed=45;
var pixelstep=2;
var goright=(1>0)?true:false;
var pauseOnmouseover=(1>0)?true:false;

//** DO NOT EDIT BEYOND THIS POINT **
var outer,inner,ref,elementwidth;
var w3c=(document.getElementById)?true:false;
var ns4=(document.layers)?true:false;
var ie4=(document.all && !w3c)?true:false;
var ie5=(document.all && w3c)?true:false;
var ns6=(w3c && navigator.appName.indexOf("Netscape")>=0)?true:false;
var txt='';
var goscroll=true;
if(ns4){
txt+='<table cellpadding=0 cellspacing=0 border=0 height='+boxheight+' width='+boxwidth+'><tr><td>';
txt+='<ilayer name="ref" bgcolor="'+boxcolor+'" width="'+boxwidth+'" height="'+boxheight+'"></ilayer>';
txt+='</td></tr></table>';
txt+='<layer name="outer" bgcolor="'+boxcolor+'" visibility="hidden" width="'+boxwidth+'" height="'+boxheight+'" '+((pauseOnmouseover)? 'onmouseover="goscroll=false" onmouseout="goscroll=true"':'')+'>';
txt+='<layer name="inner"  visibility="hidden">';
txt+=content;
txt+='</layer></layer>';
}else{
txt+='<div id="ref" style="position:relative; width:'+boxwidth+'; height:'+boxheight+'; visibility:visible; background-color:'+boxcolor+';" '+((pauseOnmouseover)? 'onmouseover="goscroll=false" onmouseout="goscroll=true"':'')+'></div>';
txt+='<div id="outer" style="position:absolute; width:'+boxwidth+'; height:'+boxheight+'; visibility:hidden; background-color:'+boxcolor+'; overflow:hidden;">';
txt+='<div id="inner"  style="position:absolute; visibility:hidden; overflow:hidden; cursor:default;" '+((pauseOnmouseover)? 'onmouseover="goscroll=false" onmouseout="goscroll=true"':'')+'>';
txt+=content;
txt+='</div></div>';
}
document.write(txt);
txt=0;

function getPageLeft(el){
var x;
if(ns4)return el.pageX;
if(ie4||w3c){
x = 0;
while(el.offsetParent!=null){
x+=el.offsetLeft;
el=el.offsetParent;
}
x+=el.offsetLeft;
return x;
}}

function getPageTop(el){
var y;
if(ns4)return el.pageY;
if(ie4||w3c){
y=0;
while(el.offsetParent!=null){
y+=el.offsetTop;
el=el.offsetParent;
}
y+=el.offsetTop;
return y;
}}

function getElWidth(el){
if(ns4)return (el.document.width)? el.document.width : el.clip.right-el.clip.left;
else if(ie4||ie5)return (el.style.width)? el.style.width:el.clientWidth;
else if(w3c)return (el.style.width)?parseInt(el.style.width):parseInt(el.offsetWidth);
else return -1;
}

window.onresize=function(){
if(ns4)setTimeout('history.go(0)', 400);
else{
outer.style.left=getPageLeft(ref)+'px';
outer.style.top=getPageTop(ref)+'px';
}}

function scrollbox(){
if(goscroll){
if(ns4){
inner.left+=(goright)? pixelstep: -pixelstep;
inner.clip.right=(boxwidth-inner.left-2>boxwidth)? boxwidth-2 : boxwidth-inner.left-2;
inner.clip.left=-inner.left+2;
if(goright){
if(inner.left>boxwidth)inner.left=-elementwidth;
}else{
if(inner.left<-elementwidth)inner.left=boxwidth+2;
}}else{
inner.style.left=parseInt(inner.style.left)+((goright)? pixelstep: -pixelstep)+'px';
if(goright){
if(parseInt(inner.style.left)>boxwidth)inner.style.left=-elementwidth+'px';
}else{
if(parseInt(inner.style.left)<-elementwidth)inner.style.left=boxwidth+2+'px';
}}}}

window.onload=function(){
ref=(ns4)?document.layers['ref']:(ie4)?document.all['ref']:document.getElementById('ref');
outer=(ns4)?document.layers['outer']:(ie4)?document.all['outer']:document.getElementById('outer');
inner=(ns4)?outer.document.layers['inner']:(ie4)?document.all['inner']:document.getElementById('inner');
elementwidth=getElWidth(inner);
if(ns4){
outer.clip.width=boxwidth;
outer.clip.height=boxheight;
outer.moveTo(getPageLeft(ref),getPageTop(ref));
inner.left=(goright)? -elementwidth : boxwidth-2;
inner.clip.width=0
inner.clip.height=boxheight-4;
outer.visibility="show";
inner.visibility="show";
}else{
outer.style.left=getPageLeft(ref)+'px';
outer.style.top=getPageTop(ref)+'px';
inner.style.width=elementwidth+'px';
inner.style.left=((goright)? -elementwidth : boxwidth-2)+'px';
inner.style.visibility="visible";
}
setInterval('scrollbox()',speed);
}

//DO NOT MODIFY
/*
<APPLETINFO>
appletname=jsmarqueemenu
applettype=JAVASCRIPT
created=1074351094390
appletfilename=jsmarqueemenu1.js
</APPLETINFO>
<JAVASCRIPT>
boxheight=103
iw=136
pixelstep=2
tpause=45
target=_self
godown=1
pauseonmo=1
bcol=16777215
</JAVASCRIPT>
<HTMLGENERATOR>
menuitems=-
menuitems_GS=2;images;url
mystarttag=-
mystarttag_GS=1;-
url_GS=0;-
url0=
url1=
url2=
url3=
images_GS=4;-
images0=../images/pic21.jpg
images1=pic22.jpg
images2=pic23.jpg
images3=pic24.jpg
</HTMLGENERATOR>
*/