/***************************************************/
/**********  Ananas Boutique: Home  ****************/
/***************************************************/

function HomeObject() {
   var cPath   = "./pix/home/";
   var aPic    = new Array(   "abhome002a", "abhome003a", 
                              "abhome004a", "abhome006a", "abhome007a", 
                              "abhome010a", "ab_home_011", "ab_home_012" );

   var aWidth  = new Array(  "300", "300", "400", "320", "227", "320", "247", "296" );
   var aHeight = new Array(  "300", "350", "300", "320", "350",  "320", "370", "370" );
 
   this.Show = function Show() {  
       ShowStandardPage( "Home.ShowBody();", "main" ); 
   } 

   this.here = function Showhere() { document.write( 'here'); }

   this.ShowBody = function ShowBody() {
      var ran_number=Math.round( Math.random() * ( aPic.length-1) ); 
      document.write( '<table align="center" width="525" cellspacing="0" cellpadding="0" border="0">' );
      ShowTableSeperator( "35", "1" );
      document.write( '<tr><td align="center" valign="top">' );
      document.write( '<img src="' + cPath + aPic[ ran_number ] + '.jpg" width="' + aWidth[ ran_number ] +'" '+
                      'height="' + aHeight[ ran_number ] + '" border="2" alt="Home Picture">' );
      document.write( '</td></tr>' );
      document.write( '</table>' );

   }
}

Home = new HomeObject();

/************************************************/
/****************     End of File   *************/
/************************************************/
