// JavaScript Document
//
//		The parameters for marquee() are: 
//			time between rotations (seconds)
//			width of marquee
//			height of marquee
//			alt text
//			starting marquee
//			random (0 means it iterates through marquees, 1 means it randomly picks the next marquee)
//		
//		The parameters for Ad() are: 
//			path to image
//			url
//			target (use "_blank" to open in a new window)
//			mouseover message
//			For most of these parameters, a null tells the script to use the default value. 

myMarq = new Marquee( 5, 479, 263, "New This Month!", 1, 1 );
myMarq.Ad( "images/common/marqueeAllFlashOnOff.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeCenterAndBack.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnOneOffRotating.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnOneOffRotatingBackwards.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnThreeOffRotating.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnThreeOffRotatingBackwards.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnTwoOffRotating.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeOneOnTwoOffRotatingBackwards.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeThreeOnOneOffRotating.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeThreeOnOneOffRotatingBackwards.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeTwoOnOneOffRotating.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.Ad( "images/common/marqueeTwoOnOneOffRotatingBackwards.gif", "http://winecountrywebs.com/jpvideo/releasesThisMonth.html", "_blank", "New This Month!" );
myMarq.output();
