function open_window( url ) { 
	mywin = window.open(url, 'win', 'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=0,resizable=0,width=446,height=362');
}

var G_oDoc = window.document;
function o( out ) {
	G_oDoc.write(out);
}

function cancelEvent( ) {
	var oEvent = window.event;
	oEvent.cancelBubble = true;
	oEvent.returnValue = false;
}

function getParentAnchor( oElement ) {
	while( oElement.tagName != 'A' && oElement.tagName != 'BODY' ) {
		oElement = oElement.parentElement;
	}
	return oElement;
}

function onclickFullPicture( ) {
	var oA = getParentAnchor( window.event.srcElement );
	if( oA.tagName == 'A' ) {
		window.open( oA.href, '' ,'directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,width=500,height=500', false );
		cancelEvent( );
	}
}

var G_fUsePopup = /MSIE [5-9]/.test( window.navigator.appVersion );
function outputPopup( ) {
	if( G_fUsePopup ) {
		o( '<div id=idPopup class=PopupHidden></div>' );
	}
}

function closePopup( ) {
	if( G_fUsePopup ) {
		if( idPopup.className != 'PopupHidden' ) {
			idPopup.className = 'PopupHidden';
		}
	}
}

function onchangePopupImage( nLinkTop, nLinkLeft, nLinkHeight ) {
	var nOffsetTop = idPopup.parentElement.offsetTop;
	var nPopupHeight = idPopup.offsetHeight;

	var oBody = window.document.body;
	var nBodyTop = oBody.scrollTop - nOffsetTop;
	var nBodyHeight = oBody.clientHeight;
	var nBodyCenter = ( nBodyTop + ( nBodyHeight / 2 ) );

	var nTop;
	if( nPopupHeight > nBodyHeight ) {
		nTop = nBodyTop;
	}
	else if( nLinkTop > nBodyCenter ) {
		nTop = nLinkTop - nPopupHeight - 7;
		if( nTop < nBodyTop ) {
			nTop = nBodyTop;
		}
	}
	else {
		nTop = nLinkTop + nLinkHeight + 3;
		if( nTop + nPopupHeight > nBodyTop + nBodyHeight ) {
			nTop = ( nBodyTop + nBodyHeight ) - nPopupHeight;
		}
	}
	idPopup.style.top = nTop;
	idPopup.style.left = nLinkLeft + 5;
	idPopup.className = 'PopupVisable';
}

var G_sPopupURL = null;
function openPopupImage( imageURL ) {
	if( G_fUsePopup ) {
		cancelTimeout( );
		closeMenuChildren( menuRoot, true );
		cancelEvent( );

		if( idPopup.className != 'PopupHidden' && G_sPopupURL == imageURL ) {
			closePopup( );
			return;
		}

		closePopup( );
		G_sPopupURL = imageURL;

		var oEvent = window.event;
		var oParent = idPopup.parentElement;
		var oSrcElement = getParentAnchor( oEvent.srcElement );
		var nSrcTop = window.document.body.scrollTop + oEvent.clientY - oEvent.offsetY - oParent.offsetTop;
		var nSrcLeft = ( oEvent.clientX - oEvent.offsetX ) + oSrcElement.offsetWidth - oParent.offsetLeft;
		var nSrcHeight = oSrcElement.offsetHeight;
		idPopup.innerHTML = '<table cellpadding=10 cellspacing=1 bgcolor=#CCC1B0 style="border-style:outset; border-width:2px;"><tr><td align=center bgcolor=#CCC1B0><a href="' + oSrcElement.href + '" class=imagelight><IMG alt="Image loading please wait..." src="' + imageURL + '" onresize="onchangePopupImage(' + nSrcTop + ',' + nSrcLeft + ',' + nSrcHeight + ');" onchange="onreadystatechangePopupImage(' + nSrcTop + ',' + nSrcLeft + ',' + nSrcHeight + ');"><br><font size=1 face=arial>View product details...</Font></a></td></tr></table>';
	}
}

function openPPI( imageID ) {
	return openPopupImage( img_src + '/images/products/bestsellers/' + imageID + '.jpg' );
}

var G_idTimeout = null;
var G_oSubMenu = null;
var G_oEventSource = null;

function isMenuLinkSelected( oMenuLink ) {
	var className = oMenuLink.className;
	return ( className == 'MenuLinkSelected' || className == 'MenuRootLinkSelected' );
}

function hilightMenuLink( oLink ) {
	switch( oLink.className )
	{
	case 'MenuLink':
		oLink.className = 'MenuLinkSelected';
		break;
	case 'MenuRootLink':
		oLink.className = 'MenuRootLinkSelected';
		break;
	}
}

function getParentMenuLink( oLink ) {
	var oElement = oLink;
	var tagName = oElement.tagName;
	var className = oElement.className;
	while( tagName != 'BODY' ) {
		if( tagName == 'DIV' && ( className == 'MenuLink' || className == 'MenuRootLink' || className == 'MenuLinkSelected' || className == 'MenuRootLinkSelected' ) ) {
			return oElement;
		}
		oElement = oElement.parentElement;
		tagName = oElement.tagName;
		className = oElement.className;
	}
	return null;
}

function getParentMenu( oMenu ) {
	var oElement = oMenu.parentElement;
	var tagName = oElement.tagName;
	var className = oElement.className;
	while( tagName != "BODY" ) {
		if( ( tagName == 'DIV' && ( className == 'MenuVisible' || className == 'MenuHidden' ) ) || ( oElement.id == 'menuRoot' ) ) {
			return oElement;
		}
		oElement = oElement.parentElement;
		tagName = oElement.tagName;
	}
	return null;
}

function closeMenuChildren( oMenu, bDeselect ) {
	var oChildren = oMenu.children.tags('DIV');
	var nLength = oChildren.length;
	for( var i = 0; i < nLength; i++ ) {
		var oElement = oChildren[i];
		switch( oElement.className )
		{
		case 'MenuVisible':
			oElement.className = 'MenuHidden';
			closeMenuChildren( oElement, true );
			break;
		case 'MenuLinkSelected':
			if( bDeselect ) {
				oElement.className = 'MenuLink';
			}
			break;
		case 'MenuRootLinkSelected':
			if( bDeselect ) {
				oElement.className = 'MenuRootLink';
			}
			break;
		}
	}
	return null;
}

function closeParentChildren( oMenu, bDeselect ) {
	var oParent = getParentMenu( oMenu );
	if( oParent != null ) {
		closeMenuChildren( oParent, bDeselect );
	}
}

function deselectMenuChildren( oMenu, bClose ) {
	var oChildren = oMenu.children.tags('DIV');
	var nLength = oChildren.length;
	for( var i = 0; i < nLength; i++ ) {
		var oElement = oChildren[i];
		switch( oElement.className )
		{
		case 'MenuVisible':
			if( bClose ) {
				oElement.className = 'MenuHidden';
				deselectMenuChildren( oElement, true );
			}
			break;
		case 'MenuLinkSelected':
			oElement.className = 'MenuLink';
			break;
		case 'MenuRootLinkSelected':
			oElement.className = 'MenuRootLink';
			break;
		}
	}
	return null;
}

function deselectParentChildren( oMenu, bClose ) {
	var oParent = getParentMenu( oMenu );
	if( oParent != null ) {
		deselectMenuChildren( oParent, bClose );
	}
}

function getSubMenuTop( oMenu, nOffsetTop ) {
	var nPosY = window.event.clientY - window.event.offsetY;
	var nMenuHeight = oMenu.clientHeight;
	var nBodyHeight = document.body.clientHeight;
	if( nMenuHeight  > nBodyHeight ) {
		nOffsetTop -= nPosY;
	}
	else if( nPosY + nMenuHeight  > nBodyHeight ) {
		nOffsetTop += nBodyHeight - nPosY - nMenuHeight;
	}
	return nOffsetTop;
}

function openSubMenu( oMenu, nTop, nLeft, bDeselect ) {
	oMenu.style.top = nTop;
	oMenu.style.left = nLeft;
	closeParentChildren( oMenu, bDeselect );
	oMenu.className = 'MenuVisible';
}

function cancelTimeout( ) {
	if( G_idTimeout != null ) {
		G_oEventSource = null;
		G_oSubMenu = null;
		window.clearTimeout( G_idTimeout );
		G_idTimeout = null;
	}
}

function onopenRootSubMenu( nTop, nLeft ) {
	openSubMenu( G_oSubMenu, nTop, nLeft, true );
	hilightMenuLink( G_oEventSource );
	cancelTimeout( );
}

function onopenSubMenu( nTop, nLeft ) {
	openSubMenu( G_oSubMenu, nTop, nLeft, false );
	cancelTimeout( );
}

function oncloseSubMenu( ) {
	closeParentChildren( G_oEventSource, false );
	cancelTimeout( );
}

function startRootSubMenuOpen( oEventSource, oSubMenu ) {
	G_oEventSource = oEventSource;
	G_oSubMenu = oSubMenu;
	G_idTimeout = window.setTimeout( 'onopenRootSubMenu( ' + getSubMenuTop( G_oSubMenu, oEventSource.offsetTop ) + ', ' + oEventSource.offsetWidth + ' );', 150 );
}

function startSubMenuOpen( oEventSource, oSubMenu ) {
	G_oEventSource = oEventSource;
	G_oSubMenu = oSubMenu;
	G_idTimeout = window.setTimeout( 'onopenSubMenu( ' + getSubMenuTop( G_oSubMenu, oEventSource.offsetTop ) + ', ' + oEventSource.offsetWidth + ' );', 350 );
}

function startSubMenuClose( oEventSource ) {
	G_oEventSource = oEventSource;
	G_oSubMenu = null;
	G_idTimeout = window.setTimeout( 'oncloseSubMenu( );', 350 );
}

function onclickBody( ) {
	if( window.event.srcElement.tagName != 'A' ) {
		cancelTimeout( );
		closeMenuChildren( menuRoot, true );
		closePopup( );
	}
}

function onclickMenu( oMenu ) {
	if( window.event.srcElement.tagName != 'A' ) {
		cancelEvent( );
	}
}

function onclickMenuRootLink( oMenu ) {
	if( oMenu.className == 'MenuHidden' ) {
		closePopup( );
		onclickMenuLink( oMenu );
	}
	else {
		cancelTimeout( );
		closeMenuChildren( menuRoot, true );
	}
}

function onclickMenuLink( oMenu ) {
	cancelTimeout( );
	var src = getParentMenuLink( window.event.srcElement );
	var bSelected = isMenuLinkSelected( src );
	if( oMenu.className == 'MenuHidden' ) {
		if( bSelected ) {
			openSubMenu( oMenu, getSubMenuTop( oMenu, src.offsetTop ), src.offsetWidth, false );
		}
		else {
			openSubMenu( oMenu, getSubMenuTop( oMenu, src.offsetTop ), src.offsetWidth, true );
			hilightMenuLink( src );
		}
	}
	cancelEvent( );
}

function onmouseoverMenuLink( oMenu ) {
	cancelTimeout( );
	var src = getParentMenuLink( window.event.srcElement );
	deselectParentChildren( src, false );
	hilightMenuLink( src );
	if( oMenu.className == 'MenuHidden' ) {
		startSubMenuOpen( src, oMenu );
	}
	cancelEvent( );
}

function onclickMenuItemLink( ) {
	cancelTimeout( );
	var src = window.event.srcElement;
	var className = src.className;
	if( src.tagName == 'DIV' && ( className == 'MenuLinkSelected' || className == 'MenuRootLinkSelected' ) ) {
		var oChildren = src.children.tags('A');
		var nLength = oChildren.length;
		for( var i = 0; i < nLength; i++ ) {
			window.location.href = oChildren(i).href;
			cancelEvent( );
		}
	}
}

function onmouseoverMenuItemLink( ) {
	var src = getParentMenuLink( window.event.srcElement );
	if( src != null ) {
		cancelTimeout( );
		deselectParentChildren( src, false );
		hilightMenuLink( src );
		startSubMenuClose( src );
	}
	cancelEvent( );
}

function beginNav( ) {
	if( u == '[[URL_SID]]' ) {
		u = '';
	}

	if( screen.availWidth > 640 ) {
		o( '<div style="position:absolute; left:' + String( screen.availWidth - 375 ) + '; z-index:1; width:200;"></div>');
	}
	o( '<div style="position:absolute; left:' + String( screen.availWidth - 180 ) + '; z-index:1;">');
}

function oMRB( ) {
	o('<div id="menuRoot" class="MenuRoot" style="top: 95">');
}

function oMRE( ) {
	o('</div>');
}

function oMRL( menuID, menuName ) {
	o('<div class="MenuRootLink" onclick="onclickMenuRootLink(' + menuID + ');">' + menuName + '</div>');
}

function oML( menuID, menuName ) {
	o('<div class="MenuLink" onmouseover="onmouseoverMenuLink(' + menuID + ');" onclick="onclickMenuLink(' + menuID + ');"><img src="' + img_src + '/images/blackarrow.gif" vspace=2 align=right>' + menuName + '</div>');
}

function oMIL( itemURL, itemName ) {
	if( itemURL.charAt(0) == '/' ) {
		itemURL = u + itemURL;
	}
	o('<div class="MenuLink" onmouseover="onmouseoverMenuItemLink();" onclick="onclickMenuItemLink();"><a href="' + itemURL + '">' + itemName + '</a></div>');
}

function oMB( menuID ) {
	o('<div id="' + menuID + '" class="MenuHidden" onclick="onclickMenu( ' + menuID + ' );">');
}

function oME( ) {
	o('</div>');
}

function printMenubar( )
{
	outputPopup( );
	oMRB( );
		oMRL('menuHelp', 'Help');
		oMRL('menuDVDs', 'DVDs');
		oMRL('menuVideos', 'VHS Videos');
		oMRL('menuSexToys', 'Sex Toys');
		oMRL('menuStars', 'Porn Stars');
		oMRL('menuAcct', 'Your Account');
		oMRL('menuContact', 'Contact Us');

		oMB('menuShopping');
			oMIL('/siteinfo/help.htm', 'How To Order');
			oMIL('/siteinfo/shippinginfo.htm', 'Shipping Info');
			oMIL('/siteinfo/guarantee.htm', 'Quality Guarantee');
			oMIL('/siteinfo/security.htm', 'Security & Privacy');
		oME( );
		oMB('menuDVDs');
			oMIL('/dvds/default.htm', 'DVDs Home');
			oMIL('/dvds/recentadditions.htm', 'Recent Additions');
			oMIL('/thepipeline/default.htm', 'Porn Movie News');
			oML('menuDVDs2', 'DVD Reviews');
			oML('menuDVDs3', 'DVD Categories');
			oML('menuDVDs4', 'DVD Studios');
			oMB('menuDVDs2');
				oMIL('/critics/customers/list.htm', 'Customer Reviews');
				oMIL('/critics/rog/list.htm', 'Rog\'s Reviews');
			oME( );
			oMB('menuDVDs3');
				oML('menuDVDs3a', '#-B');
				oML('menuDVDs3b', 'C-L');
				oML('menuDVDs3c', 'M-Z');
				oMB('menuDVDs3a');
					oMIL('/dvds/16hour/default.htm', '16 Hour');
					oMIL('/dvds/2hour/default.htm', '2 Hour');
					oMIL('/dvds/20hour/default.htm', '20 Hour');
					oMIL('/dvds/35mm/default.htm', '35mm');
					oMIL('/dvds/4hour/default.htm', '4 Hour');
					oMIL('/dvds/amateur/default.htm', 'Amateur');
					oMIL('/dvds/anal/default.htm', 'Anal');
					oMIL('/dvds/animation/default.htm', 'Animation');
					oMIL('/dvds/asian/default.htm', 'Asian');
					oMIL('/dvds/bigtits/default.htm', 'Big Tits');
					oMIL('/dvds/black/default.htm', 'Black');
					oMIL('/dvds/bondage/default.htm', 'Bondage');
				oME( );
				oMB('menuDVDs3b');
					oMIL('/dvds/classics/default.htm', 'Classics');
					oMIL('/dvds/compilation/default.htm', 'Compilation');
					oMIL('/dvds/educational/default.htm', 'Educational');
					oMIL('/dvds/feature/default.htm', 'Feature');
					oMIL('/dvds/fetish/default.htm', 'Fetish');
					oMIL('/dvds/foreign/default.htm', 'Foreign');
					oMIL('/dvds/gangbang/default.htm', 'Gang Bang');
					oMIL('/dvds/gonzo/default.htm', 'Gonzo');
					oMIL('/dvds/interactive/default.htm', 'Interactive');
					oMIL('/dvds/internalcumshot/default.htm', 'Internal Cumshot');
					oMIL('/dvds/interracial/default.htm', 'Interracial');
					oMIL('/dvds/latin/default.htm', 'Latin');
					oMIL('/dvds/lesbian/default.htm', 'Lesbian');
				oME( );
				oMB('menuDVDs3c');
					oMIL('/dvds/masturbation/default.htm', 'Masturbation');
					oMIL('/dvds/multiangle/default.htm', 'Multi-Angle');
					oMIL('/dvds/oral/default.htm', 'Oral');
					oMIL('/dvds/orgy/default.htm', 'Orgy');
					oMIL('/dvds/point-of-view/default.htm', 'Point-Of-View');
					oMIL('/dvds/pregnant/default.htm', 'Pregnant');
					oMIL('/dvds/shaving/default.htm', 'Shaving');
					oMIL('/dvds/smoking/default.htm', 'Smoking');
					oMIL('/dvds/squirting/default.htm', 'Squirting');
					oMIL('/dvds/teenover18/default.htm', 'Teen Over 18');
				oME( );
			oME( );
			oMB('menuDVDs4');
				oML('menuDVDs4a', '#-C');
				oML('menuDVDs4b', 'D-H');
				oML('menuDVDs4c', 'I-O');
				oML('menuDVDs4d', 'P-S');
				oML('menuDVDs4e', 'T-Z');
				oMB('menuDVDs4a');
					oMIL('/dvds/3vision/default.htm', '3 Vision Entertainment');
					oMIL('/dvds/3rd/default.htm', '3rd Degree');
					oMIL('/dvds/4play/default.htm', '4-Play');
					oMIL('/dvds/adamandeve/default.htm', 'Adam & Eve');
					oMIL('/dvds/adultsource/default.htm', 'Adult Source Media');
					oMIL('/dvds/anabolic/default.htm', 'Anabolic');
					oMIL('/dvds/annaka/default.htm', 'Annaka Entertainment');
					oMIL('/dvds/arrow/default.htm', 'Arrow Productions');
					oMIL('/dvds/bigtop/default.htm', 'Big Top');
					oMIL('/dvds/bizarre/default.htm', 'Bizarre');
					oMIL('/dvds/blackice/default.htm', 'Black Ice');
					oMIL('/dvds/caballero/default.htm', 'Caballero');
					oMIL('/dvds/celestial/default.htm', 'Celestial');
					oMIL('/dvds/channel69/default.htm', 'Channel 69');
					oMIL('/dvds/cinderella/default.htm', 'Cinderella Distributors Inc.');
					oMIL('/dvds/criticalx/default.htm', 'Critical X');
				oME( );
				oMB('menuDVDs4b');
					oMIL('/dvds/damaged/default.htm', 'Damaged Productions');
					oMIL('/dvds/devilsfilms/default.htm', 'Devil\'s Films');
					oMIL('/dvds/diabolic/default.htm', 'Diabolic');
					oMIL('/dvds/digitalplay/default.htm', 'Digital Playground');
					oMIL('/dvds/dreamland/default.htm', 'Dreamland Video');
					oMIL('/dvds/elegantangel/default.htm', 'Elegant Angel');
					oMIL('/dvds/eroticcity/default.htm', 'Erotic City Entertainment');
					oMIL('/dvds/evasive/default.htm', 'Evasive Angles');
					oMIL('/dvds/evilangel/default.htm', 'Evil Angel');
					oMIL('/dvds/fatdog/default.htm', 'Fat Dog');
					oMIL('/dvds/genxxx/default.htm', 'GenXXX');
					oMIL('/dvds/heatwave/default.htm', 'Heatwave');
					oMIL('/dvds/helenduval/default.htm', 'Helen Duval');
					oMIL('/dvds/hustler/default.htm', 'Hustler');
				oME( );
				oMB('menuDVDs4c');
					oMIL('/dvds/jillkelly/default.htm', 'Jill Kelly Productions');
					oMIL('/dvds/klimaxxx/default.htm', 'Klimaxxx');
					oMIL('/dvds/lavareleasing/default.htm', 'Lava Releasing');
					oMIL('/dvds/legend/default.htm', 'Legend');
					oMIL('/dvds/leisuretime/default.htm', 'Leisure Time');
					oMIL('/dvds/metro/default.htm', 'Metro');
					oMIL('/dvds/nectar/default.htm', 'Nectar Entertainment');
					oMIL('/dvds/newbreed/default.htm', 'New Breed Productions');
					oMIL('/dvds/newmachine/default.htm', 'New Machine Publishing');
					oMIL('/dvds/newsensations/default.htm', 'New Sensations');
					oMIL('/dvds/ninnworx/default.htm', 'Ninn Worx');
					oMIL('/dvds/nutech/default.htm', 'NuTech Digital');
					oMIL('/dvds/odysseygroup/default.htm', 'Odyssey Group');
				oME( );
				oMB('menuDVDs4d');
					oMIL('/dvds/paradise/default.htm', 'Paradise Video');
					oMIL('/dvds/platinumblue/default.htm', 'Platinum Blue Productions');
					oMIL('/dvds/pleasure/default.htm', 'Pleasure Productions');
					oMIL('/dvds/private/default.htm', 'Private');
					oMIL('/dvds/pureplay/default.htm', 'Pure Play Media');
					oMIL('/dvds/puritan/default.htm', 'Puritan');
					oMIL('/dvds/redlightdistrict/default.htm', 'Red Light District');
					oMIL('/dvds/sexz/default.htm', 'Sex Z Pictures');
					oMIL('/dvds/seymore/default.htm', 'Seymore Butts');
					oMIL('/dvds/sincity/default.htm', 'Sin City');
					oMIL('/dvds/sineplex/default.htm', 'Sineplex Entertainment');
					oMIL('/dvds/smash/default.htm', 'Smash Pictures');
					oMIL('/dvds/sunshine/default.htm', 'Sunshine');
					oMIL('/dvds/swank/default.htm', 'Swank Digital');
				oME( );
				oMB('menuDVDs4e');
					oMIL('/dvds/tvx/default.htm', 'TVX');
					oMIL('/dvds/ultimate/default.htm', 'Ultimate');
					oMIL('/dvds/vca/default.htm', 'VCA');
					oMIL('/dvds/vcx/default.htm', 'VCX');
					oMIL('/dvds/videoteam/default.htm', 'Video Team');
					oMIL('/dvds/x-pix/default.htm', 'Video X-Pix');
					oMIL('/dvds/vivid/default.htm', 'Vivid');
					oMIL('/dvds/westcoast/default.htm', 'West Coast');
					oMIL('/dvds/wicked/default.htm', 'Wicked');
					oMIL('/dvds/wildlife/default.htm', 'Wildlife Productions');
					oMIL('/dvds/zane/default.htm', 'Zane');
					oMIL('/dvds/zero/default.htm', 'Zero Tolerance');
				oME( );
			oME( );
			oMIL('/dvds/prodco-list.htm', 'Complete Studio List');
		oME( );
		oMB('menuVideos');
			oMIL('/videos/default.htm', 'Videos Home');
			oMIL('/videos/newreleases.htm', 'New Releases');
			oMIL('/videos/recentadditions.htm', 'Recent Additions');
			oMIL('/thepipeline/default.htm', 'Porn Movie News');
			oML('menuVideos3', 'Video Reviews');
			oML('menuVideos4', 'Video Genres');
			oML('menuVideos5', 'Video Studios');
			oMB('menuVideos3');
				oMIL('/critics/customers/list.htm', 'Customer Reviews');
				oMIL('/critics/rog/list.htm', 'Rog\'s Reviews');
			oME( );
			oMB('menuVideos4');
				oMIL('/videos/amateurs/default.htm', 'Amateur');
				oMIL('/videos/anal/default.htm', 'Anal');
				oMIL('/videos/asian/default.htm', 'Asian');
				oMIL('/videos/blacks/default.htm', 'Black');
				oMIL('/videos/blowjobs/default.htm', 'Blowjobs');
				oMIL('/videos/couples/default.htm', 'Couples');
				oMIL('/videos/extremehardcore/default.htm', 'Extreme Hardcore');
				oMIL('/videos/fetishes/default.htm', 'Fetishes');
				oMIL('/videos/foreign/default.htm', 'Foreign');
				oMIL('/videos/gonzo/default.htm', 'Gonzo');
				oMIL('/videos/instructional/default.htm', 'Instructional');
				oMIL('/videos/lesbians/default.htm', 'Lesbians');
			oME( );
			oMB('menuVideos5');
				oML('menuVideos5a', '#-C');
				oML('menuVideos5b', 'D-H');
				oML('menuVideos5c', 'I-N');
				oML('menuVideos5d', 'O-S');
				oML('menuVideos5e', 'T-Z');
				oMB('menuVideos5a');
					oMIL('/videos/3rd/default.htm', '3rd Degree Films');
					oMIL('/videos/adamandeve/default.htm', 'Adam & Eve');
					oMIL('/videos/allgoodvideo/default.htm', 'All Good Video');
					oMIL('/videos/anabolic/default.htm', 'Anabolic');
					oMIL('/videos/annaka/default.htm', 'Annaka Entertainment');
					oMIL('/videos/arrow/default.htm', 'Arrow Productions');
					oMIL('/videos/bacchus/default.htm', 'Bacchus');
					oMIL('/videos/bigtop/default.htm', 'Big Top');
					oMIL('/videos/bizarre/default.htm', 'Bizarre');
					oMIL('/videos/bruder/default.htm', 'Bruder Releasing Inc.');
					oMIL('/videos/caballero/default.htm', 'Caballero');
					oMIL('/videos/celestial/default.htm', 'Celestial');
					oMIL('/videos/cinderella/default.htm', 'Cinderella Distributors Inc.');
					oMIL('/videos/coast-to-coast/default.htm', 'Coast To Coast');
					oMIL('/videos/collectors/default.htm', 'Collector\'s Video');
				oME( );
				oMB('menuVideos5b');
					oMIL('/videos/devilsfilms/default.htm', 'Devil\'s Films');
					oMIL('/videos/dreamland/default.htm', 'Dreamland Video');
					oMIL('/videos/elegantangel/default.htm', 'Elegant Angel');
					oMIL('/videos/eurotique/default.htm', 'Eurotique');
					oMIL('/videos/evasive/default.htm', 'Evasive Angles');
					oMIL('/videos/evilangel/default.htm', 'Evil Angel');
					oMIL('/videos/fatdog/default.htm', 'Fat Dog');
					oMIL('/videos/filmco/default.htm', 'Filmco');
					oMIL('/videos/4play/default.htm', '4-Play');
					oMIL('/videos/genxxx/default.htm', 'GenXXX');
					oMIL('/videos/heatwave/default.htm', 'Heatwave');
					oMIL('/videos/helenduval/default.htm', 'Helen Duval');
					oMIL('/videos/hollywood/default.htm', 'Hollywood');
					oMIL('/videos/hustler/default.htm', 'Hustler');
				oME( );
				oMB('menuVideos5c');
					oMIL('/videos/jakesteed/default.htm', 'Jake Steed Productions');
					oMIL('/videos/jetset/default.htm', 'Jet Set Productions');
					oMIL('/videos/jillkelly/default.htm', 'Jill Kelly Productions');
					oMIL('/videos/klimaxxx/default.htm', 'Klimaxxx');
					oMIL('/videos/legend/default.htm', 'Legend');
					oMIL('/videos/leisuretime/default.htm', 'Leisure Time');
					oMIL('/videos/metro/default.htm', 'Metro');
					oMIL('/videos/morley/default.htm', 'Morley Distributing Inc.');
					oMIL('/videos/nastypixxx/default.htm', 'Nasty Pixxx');
					oMIL('/videos/newsensations/default.htm', 'New Sensations');
					oMIL('/videos/ninnworx/default.htm', 'Ninn Worx');
				oME( );
				oMB('menuVideos5d');
					oMIL('/videos/odysseygroup/default.htm', 'Odyssey Group');
					oMIL('/videos/outlaw/default.htm', 'Outlaw');
					oMIL('/videos/paradise/default.htm', 'Paradise Video');
					oMIL('/videos/pepper/default.htm', 'Pepper Productions');
					oMIL('/videos/pleasure/default.htm', 'Pleasure Productions');
					oMIL('/videos/plum/default.htm', 'Plum');
					oMIL('/videos/private/default.htm', 'Private');
					oMIL('/videos/quality-x/default.htm', 'Quality X Video');
					oMIL('/videos/redboard/default.htm', 'Red Board');
					oMIL('/videos/redlightdistrict/default.htm', 'Red Light District');
					oMIL('/videos/rosebud/default.htm', 'Rosebud');
					oMIL('/videos/seymore/default.htm', 'Seymore Butts');
					oMIL('/videos/sincity/default.htm', 'Sin City');
					oMIL('/videos/sineplex/default.htm', 'Sineplex Entertainment');
				oME( );
				oMB('menuVideos5e');
					oMIL('/videos/totallytasteless/default.htm', 'Totally Tasteless');
					oMIL('/videos/ultimate/default.htm', 'Ultimate');
					oMIL('/videos/vca/default.htm', 'VCA');
					oMIL('/videos/vcx/default.htm', 'VCX');
					oMIL('/videos/vidco/default.htm', 'VIDCO');
					oMIL('/videos/videoteam/default.htm', 'Video Team');
					oMIL('/videos/x-pix/default.htm', 'Video X-Pix');
					oMIL('/videos/vivid/default.htm', 'Vivid');
					oMIL('/videos/westcoast/default.htm', 'West Coast');
					oMIL('/videos/wicked/default.htm', 'Wicked');
					oMIL('/videos/zane/default.htm', 'Zane');
					oMIL('/videos/zero/default.htm', 'Zero Tolerance');
				oME( );
			oME( );
			oMIL('/videos/prodco-list.htm', 'Complete Studio List');
		oME( );
		oMB('menuSexToys');
			oMIL('/sextoys/default.htm', 'Sex Toys Home');
			oMIL('/sextoys/recentadditions.htm', 'Recent Additions');
			oML('menuSexToys2', 'Sex Toy Reviews');
			oML('menuSexToys3', 'Sex Toy Categories');
			oMB('menuSexToys2');
				oMIL('/critics/customers/list.htm', 'Customer Reviews');
				oMIL('/critics/rog/list.htm', 'Rog\'s Reviews');
			oME( );
			oMB('menuSexToys3');
				oMIL('/sextoys/adultgames/default.htm', 'Adult Games');
				oMIL('/sextoys/analtoys/default.htm', 'Anal Toys');
				oMIL('/sextoys/aphrodesiacs/default.htm', 'Aphrodesiacs');
				oMIL('/sextoys/asian/default.htm', 'Asian Toys');
				oMIL('/sextoys/bondage/default.htm', 'Bondage');
				oMIL('/sextoys/buttplugs/default.htm', 'Butt Plugs');
				oMIL('/sextoys/cockrings/default.htm', 'Cock Rings');
				oMIL('/sextoys/dongs/default.htm', 'Dongs');
				oMIL('/sextoys/eggsbullets/default.htm', 'Eggs & Bullets');
				oMIL('/sextoys/extensions/default.htm', 'Extensions');
				oMIL('/sextoys/fantasykits/default.htm', 'Fantasy Kits');
				oMIL('/sextoys/instructionalbooks/default.htm', 'Instructional Books');
				oMIL('/sextoys/lovedolls/default.htm', 'Love Dolls');
				oMIL('/sextoys/oilslubes/default.htm', 'Oils & Lubes');
				oMIL('/sextoys/sexcontrolproducts/default.htm', 'Sex Control Products');
				oMIL('/sextoys/strap-ons/default.htm', 'Strap-Ons');
				oMIL('/sextoys/toysforher/default.htm', 'Toys For Her');
				oMIL('/sextoys/vaginaspumps/default.htm', 'Vaginas & Pumps');
				oMIL('/sextoys/vibrators/default.htm', 'Vibrators');
			oME( );
		oME( );
		oMB('menuStars');
			oMIL('/pornstars/default.htm', 'Star Bios & Filmographies');
			oMIL('/interviews/rog/default.htm', 'Star Interviews');
		oME( );
		oMB('menuAcct');
			oMIL('/order.asp', 'Your Shopping Cart');
		oME( );
		oMB('menuHelp');
			oMIL('/siteinfo/security.htm', 'Contact Us');
			oMIL('/siteinfo/help.htm', 'How To Order');
			oMIL('/siteinfo/storepolicies.htm#billing', 'Billing Info');
			oMIL('/siteinfo/storepolicies.htm#returns', 'Return Policy');
			oMIL('/siteinfo/guarantee.htm', 'Quality Guarantee');
			oMIL('/siteinfo/security.htm', 'Security & Privacy');
			oMIL('/siteinfo/shippinginfo.htm#shippingrates', 'Domestic Shipping Info');
			oMIL('/siteinfo/shippinginfo.htm#shippingratesintl', 'International Shipping Info');
			oMIL('/siteinfo/shippinginfo.htm#shippingtime', 'Delivery Time');
			oMIL('/siteinfo/shippinginfo.htm#packaging', 'Packaging');
			oMIL('/siteinfo/shippinginfo.htm#whereweship', 'Where We Ship');
			
		oME( );
		oMB('menuContact');
			oMIL('/siteinfo/security.htm', 'Contact Information');
		oME( );
	oMRE( );
}