 
 function special_feature() {

     feature_copy = new Array
      (

'For Nike, the goal is consistent garment embellishment no matter where in the world the garment is made.',

'Lion developed this brand identification product as a means to differentiate Champion from all other athletic brands.',

'The Harley Davidson Owners Group boasts over 1000 chapters and each one has a unique set of emblems that surround the main logo usually found adorning the traditional bikers jacket.',

'Lion is the leading manufacturer of National Hockey League jersey logos.',

'We will go where others cannot tread to deliver differentiation for our clients.',

'Anyone who has been a Brownie or Girl Scout in the last fifty years is likely to have worn a Lion emblem to display her troop awards and activities.',

'Tommy Hilfiger relies upon Lion to provide top quality decoration.',

'Upon entering the US at any border one of the first things a visitor or returning citizen sees is a series of Lion products.',

'The Boy Scouts of America represents Lion\'s most enduring relationship.',

'For over 50 years, Lion emblems have authenticated Little League players.',

'The National Park Service\'s presence is signaled by an arrowhead emblem sleeve identification patch made by Lion for over forty years.',

'Our patriotic products have been shipped to identify disaster recovery teams, armed services, local law enforcement, civic leaders and homeland heroes.',

'Lion makes the uniform decoration the Pros wear and works with the Leagues to develop and approve each product design ensuring team brand integrity and speed to market.',

'From concept to delivery in a couple of weeks, Lion produced tens of thousands of individually packaged souvenirs for the Major League Baseball All-Star Game Home Run Derby.'

      );

     feature_num = Math.floor(Math.random() * feature_copy.length) + 1;

 return '<table width="272" border="0" cellspacing="0" cellpadding="0" height="199">' +
         '<tr>' +
           '<td><img src="images/feature_' + feature_num + '.gif" width="272" height="148"><br>' +
             '<table width="272" border="0" cellspacing="0" cellpadding="5">' +
               '<tr>' +
                 '<td width="2" background="images/bgfeature.gif"><img src="images/spacer.gif" width="3" height="8"></td>' +
                 '<td width="245" valign="top" background="images/bgfeatureright.gif"><span class="small">' +

                  feature_copy [ feature_num - 1 ] +

                 '</span><br><img src="images/spacer.gif" height="5" border="0"></td>' +
               '</tr>' +
             '</table>' +
             '<img src="images/feature_bot.gif" width="169" height="17"><a href="case' + feature_num + '.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'more\',\'\',\'images/feature_but_on.gif\',1)"><img src="images/feature_but_off.gif" width="103" height="17" name="more" border="0"></a>' +
           '</td>' +
         '</tr>' +
       '</table>' ;

 }
 