// JavaScript Document

			$(
				function()
				{
					// set up rollover
					$("img.rollover").hover(
						function()
						{
							this.src = this.src.replace(".jpg","-roll.jpg");
						},
						function()
						{
							this.src = this.src.replace("-roll.jpg",".jpg");
						}
					);
				}
			)
			
			
			
			
			
		swfobject.registerObject("myFlashContent", "8.0.0");