function startMarquee(id, dir, behav)

{
  var elm;
  var height;
  
var width;

  
switch (dir)
  
{
  case 'up':
  case 'down':
    
// use divs to contain each item in the marquee to force
    
// each item to begin on different lines
    
elm = 'div';
    
height = 89;
    
width  = 248;
    
break;

  
case 'left':
  case 'right':
  default:
    
// use spans to contain each item in the marquee to force
    
// each item to begin on the same line
    
elm = 'span';
    
height = 20;
    
width  = 200;
    
break;
  }

  
var html = 


'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">November 10, 2007</span><\/' 
+ elm + '>' +
  '<' + elm + '>Digital Pro presented at ISPrint show - International printing technology exhibition at Tel Aviv. <a href="present_ta08.aspx">View pictures from the show.</a><\/' + elm + '><br />'

+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">November 18, 2007</span><\/' 
+ elm + '>' +
  '<' + elm + '>Elinir company successfully launches www.ItsMyLife.co.il site for amateur photographers<\/' + elm + '><br />'

+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">December 12, 2007</span><\/' 
+ elm + '>' +
  '<' + elm + '>HP launches Funbook demo at it\'s testing center in the Indigo machines production center<\/' + elm + '><br />'

+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">January 09, 2008</span><\/' 
+ elm + '>' +
  '<' + elm + '>InterGamma Investment and Digital Pro signed a cooperation agreement <a href="http://www.intergamma.co.il" target="_blank">www.intergamma.co.il</a><\/' + elm + '><br />'


+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">January 27, 2008</span><\/' 
+ elm + '>' +
  '<' + elm + '>Digital Pro becomes a partnership of HP Indigo Greece and Israel<\/' + elm + '><br />'


+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">February 5, 2008</span><\/' 
+ elm + '>' +
  '<' + elm + '>Digital Pro presented at PMA  The leading annual photo trade show and convention at Las Vegas. <a href="#">View pictures from the show.</a> <\/' + elm + '><br />'
  

+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">March 9, 2008</span><\/' 
+ elm + '>' +
  '<' + elm + '>Unilever & Digital Pro cooperate in a campaign offering branded photobooks to clients<\/' + elm + '><br />'  


+'<' + elm + '><img src="images/news_arrows.gif" alt="" />&nbsp;<span class="newsHeader">March 24, 2008</span><\/' 
+ elm + '>' +
  '<' + elm + '>Delta Digital successfully launches <a href="http://www.ebook.co.il" target="_blank">www.ebook.co.il</a> site for amateur photographers<\/' + elm + '><br />'
+ '';
  
var marquee = new xbMarquee(id, height, width, 1, 85, dir, behav, html);
marquee.onmouseover = function () { this.stop(); };
marquee.onmouseout  = function () { this.start(); };
  
// due to limitations in Internet Explorer's initialization of
  
// element heights and widths, execute the marquee start method
  
// in the page's load event handler.
  
window.onload = function () {marquee.start();};
}
