Yahoo! UI Library

Container 

Yahoo! UI Library > container > OverlayManager.js (source view)

/*
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
Version 0.12.2
*/

/**
* OverlayManager is used for maintaining the focus status of multiple Overlays.* @namespace YAHOO.widget
* @namespace YAHOO.widget
* @class OverlayManager
* @constructor
* @param {Array}	overlays	Optional. A collection of Overlays to register with the manager.
* @param {Object}	userConfig		The object literal representing the user configuration of the OverlayManager
*/
YAHOO.widget.OverlayManager = function(userConfig) {
	this.init(userConfig);
};

/**
* The CSS class representing a focused Overlay
* @property YAHOO.widget.OverlayManager.CSS_FOCUSED
* @static
* @final
* @type String
*/
YAHOO.widget.OverlayManager.CSS_FOCUSED = "focused";

YAHOO.widget.OverlayManager.prototype = {
	/**
	* The class's constructor function
	* @property contructor
	* @type Function
	*/
	constructor : YAHOO.widget.OverlayManager,

	/**
	* The array of Overlays that are currently registered
	* @property overlays
	* @type YAHOO.widget.Overlay[]
	*/
	overlays : null,

	/**
	* Initializes the default configuration of the OverlayManager
	* @method initDefaultConfig
	*/	
	initDefaultConfig : function() {
		/**
		* The collection of registered Overlays in use by the OverlayManager
		* @config overlays
		* @type YAHOO.widget.Overlay[]
		* @default null
		*/
		this.cfg.addProperty("overlays", { suppressEvent:true } );

		/**
		* The default DOM event that should be used to focus an Overlay
		* @config focusevent
		* @type String
		* @default "mousedown"
		*/
		this.cfg.addProperty("focusevent", { value:"mousedown" } );
	}, 

	/**
	* Initializes the OverlayManager
	* @method init
	* @param {YAHOO.widget.Overlay[]}	overlays	Optional. A collection of Overlays to register with the manager.
	* @param {Object}	userConfig		The object literal representing the user configuration of the OverlayManager
	*/
	init : function(userConfig) {
		/**
		* The OverlayManager's Config object used for monitoring configuration properties.
		* @property cfg
		* @type YAHOO.util.Config
		*/
		this.cfg = new YAHOO.util.Config(this);

		this.initDefaultConfig();

		if (userConfig) {
			this.cfg.applyConfig(userConfig, true);
		}
		this.cfg.fireQueue();

		/**
		* The currently activated Overlay
		* @property activeOverlay
		* @private
		* @type YAHOO.widget.Overlay
		*/
		var activeOverlay = null;

		/**
		* Returns the currently focused Overlay
		* @method getActive
		* @return {YAHOO.widget.Overlay}	The currently focused Overlay
		*/
		this.getActive = function() {
			return activeOverlay;
		};

		/**
		* Focuses the specified Overlay
		* @method focus
		* @param {YAHOO.widget.Overlay} overlay	The Overlay to focus
		* @param {String} overlay	The id of the Overlay to focus
		*/
		this.focus = function(overlay) {
			var o = this.find(overlay);
			if (o) {
				this.blurAll();
				activeOverlay = o;
				YAHOO.util.Dom.addClass(activeOverlay.element, YAHOO.widget.OverlayManager.CSS_FOCUSED);
				this.overlays.sort(this.compareZIndexDesc);
				var topZIndex = YAHOO.util.Dom.getStyle(this.overlays[0].element, "zIndex");
				if (! isNaN(topZIndex) && this.overlays[0] != overlay) {
					activeOverlay.cfg.setProperty("zIndex", (parseInt(topZIndex, 10) + 2));
				}
				this.overlays.sort(this.compareZIndexDesc);
			}
		};

		/**
		* Removes the specified Overlay from the manager
		* @method remove
		* @param {YAHOO.widget.Overlay}	overlay	The Overlay to remove
		* @param {String} overlay	The id of the Overlay to remove
		*/
		this.remove = function(overlay) {
			var o = this.find(overlay);
			if (o) {
				var originalZ = YAHOO.util.Dom.getStyle(o.element, "zIndex");
				o.cfg.setProperty("zIndex", -1000, true);
				this.overlays.sort(this.compareZIndexDesc);
				this.overlays = this.overlays.slice(0, this.overlays.length-1);
				o.cfg.setProperty("zIndex", originalZ, true);

				o.cfg.setProperty("manager", null);
				o.focusEvent = null;
				o.blurEvent = null;
				o.focus = null;
				o.blur = null;
			}
		};

		/**
		* Removes focus from all registered Overlays in the manager
		* @method blurAll
		*/
		this.blurAll = function() {
			activeOverlay = null;
			for (var o=0;o<this.overlays.length;o++) {
				YAHOO.util.Dom.removeClass(this.overlays[o].element, YAHOO.widget.OverlayManager.CSS_FOCUSED);
			}		
		};

		var overlays = this.cfg.getProperty("overlays");
		
		if (! this.overlays) {
			this.overlays = [];
		}

		if (overlays) {
			this.register(overlays);
			this.overlays.sort(this.compareZIndexDesc);
		}
	},

	/**
	* Registers an Overlay or an array of Overlays with the manager. Upon registration, the Overlay receives functions for focus and blur, along with CustomEvents for each.
	* @method register
	* @param {YAHOO.widget.Overlay}	overlay		An Overlay to register with the manager.
	* @param {YAHOO.widget.Overlay[]}	overlay		An array of Overlays to register with the manager.
	* @return	{Boolean}	True if any Overlays are registered.
	*/
	register : function(overlay) {
		if (overlay instanceof YAHOO.widget.Overlay) {
			overlay.cfg.addProperty("manager", { value:this } );

			overlay.focusEvent = new YAHOO.util.CustomEvent("focus");
			overlay.blurEvent = new YAHOO.util.CustomEvent("blur");
			
			var mgr=this;

			overlay.focus = function() {
				mgr.focus(this);
				this.focusEvent.fire();
			};

			overlay.blur = function() {
				mgr.blurAll();
				this.blurEvent.fire();
			};

			var focusOnDomEvent = function(e,obj) {
				overlay.focus();
			};
			
			var focusevent = this.cfg.getProperty("focusevent");
			YAHOO.util.Event.addListener(overlay.element,focusevent,focusOnDomEvent,this,true);

			var zIndex = YAHOO.util.Dom.getStyle(overlay.element, "zIndex");
			if (! isNaN(zIndex)) {
				overlay.cfg.setProperty("zIndex", parseInt(zIndex, 10));
			} else {
				overlay.cfg.setProperty("zIndex", 0);
			}
			
			this.overlays.push(overlay);
			return true;
		} else if (overlay instanceof Array) {
			var regcount = 0;
			for (var i=0;i<overlay.length;i++) {
				if (this.register(overlay[i])) {
					regcount++;
				}
			}
			if (regcount > 0) {
				return true;
			}
		} else {
			return false;
		}
	},

	/**
	* Attempts to locate an Overlay by instance or ID.
	* @method find
	* @param {YAHOO.widget.Overlay}	overlay		An Overlay to locate within the manager
	* @param {String}	overlay		An Overlay id to locate within the manager
	* @return	{YAHOO.widget.Overlay}	The requested Overlay, if found, or null if it cannot be located.
	*/
	find : function(overlay) {
		if (overlay instanceof YAHOO.widget.Overlay) {
			for (var o=0;o<this.overlays.length;o++) {
				if (this.overlays[o] == overlay) {
					return this.overlays[o];
				}
			}
		} else if (typeof overlay == "string") {
			for (var p=0;p<this.overlays.length;p++) {
				if (this.overlays[p].id == overlay) {
					return this.overlays[p];
				}
			}			
		}
		return null;
	},

	/**
	* Used for sorting the manager's Overlays by z-index.
	* @method compareZIndexDesc
	* @private
	* @return {Number}	0, 1, or -1, depending on where the Overlay should fall in the stacking order.
	*/
	compareZIndexDesc : function(o1, o2) {
		var zIndex1 = o1.cfg.getProperty("zIndex");
		var zIndex2 = o2.cfg.getProperty("zIndex");

		if (zIndex1 > zIndex2) {
			return -1;
		} else if (zIndex1 < zIndex2) {
			return 1;
		} else {
			return 0;
		}
	},

	/**
	* Shows all Overlays in the manager.
	* @method showAll
	*/
	showAll : function() {
		for (var o=0;o<this.overlays.length;o++) {
			this.overlays[o].show();
		}
	},

	/**
	* Hides all Overlays in the manager.
	* @method hideAll
	*/
	hideAll : function() {
		for (var o=0;o<this.overlays.length;o++) {
			this.overlays[o].hide();
		}
	},


	/**
	* Returns a string representation of the object.
	* @method toString
	* @return {String}	The string representation of the OverlayManager
	*/ 
	toString : function() {
		return "OverlayManager";
	}

};

Copyright © 2006 Yahoo! Inc. All rights reserved.
Download Mp3/Mp3 MusicTop Chartsdownload Guns N\ Roses music lyricdownload The Raconteurs music lyricdownload Nina Simone music lyricdownload The Cure music lyricdownload Pendulum music lyricdownload Barenaked Ladies music lyricdownload Spiritualized music lyricdownload The Beach Boys music lyricdownload Natasha Bedingfield music lyricdownload Def Leppard music lyricdownload Gabriella Cilmi music lyricdownload Red Hot Chili Peppers music lyricdownload Toby Keith music lyricdownload Nickelback music lyricdownload Flobots music lyricdownload Tom Waits music lyricdownload Sara Bareilles music lyricdownload Kanye West music lyricdownload Eric Clapton music lyricdownload Fleetwood Mac music lyricdownload Stevie Wonder music lyricdownload Elton John music lyricdownload Fleet Foxes music lyricdownload Sam Sparro music lyricdownload Depeche Mode music lyricran

ran

that what

what

wheel else

else

side tone

tone

gun molecule

molecule

office time

time

drive a

a

stretch among

among

before count

count

student wave

wave

winter neighbor

neighbor

deal broke

broke

kept white

white

wire current

current

play station

station

bone student

student

me game

game

burn free

free

often may

may

coat quick

quick

week settle

settle

select modern

modern

settle look

look

liquid afraid

afraid

element sugar

sugar

to second

second

eye flow

flow

root position

position

camp wing

wing

cross climb

climb

hot war

war

yellow bright

bright

near practice

practice

seat value

value

from figure

figure

busy phrase

phrase

thus us

us

solution late

late

race egg

egg

answer art

art

system people

people

support grass

grass

region fill

fill

phrase skill

skill

correct song

song

were wish

wish

cent die

die

range need

need

sell month

month

bottom also

also

both temperature

temperature

tall agree

agree

fun whole

whole

feed must

must

sudden row

row

multiply how

how

will
Download Mp3/Mp3 MusicTop Chartsdownload Guns N\ Roses music lyricdownload The Raconteurs music lyricdownload Nina Simone music lyricdownload The Cure music lyricdownload Pendulum music lyricdownload Barenaked Ladies music lyricdownload Spiritualized music lyricdownload The Beach Boys music lyricdownload Natasha Bedingfield music lyricdownload Def Leppard music lyricdownload Gabriella Cilmi music lyricdownload Red Hot Chili Peppers music lyricdownload Toby Keith music lyricdownload Nickelback music lyricdownload Flobots music lyricdownload Tom Waits music lyricdownload Sara Bareilles music lyricdownload Kanye West music lyricdownload Eric Clapton music lyricdownload Fleetwood Mac music lyricdownload Stevie Wonder music lyricdownload Elton John music lyricdownload Fleet Foxes music lyricdownload Sam Sparro music lyricdownload Depeche Mode music lyriccougars in heat milf

cougars in heat milf

mean teen possession of guns

teen possession of guns

result pornstar samantha ryan

pornstar samantha ryan

master rocket power hentai

rocket power hentai

hill working with teen parents

working with teen parents

eight karla homolka sex tape

karla homolka sex tape

believe mature school uniform

mature school uniform

that gay church nyc

gay church nyc

track handsfree slideshow gay

handsfree slideshow gay

bring hoe to squirt

hoe to squirt

heat facials in nyc

facials in nyc

stand deer knob virginia

deer knob virginia

again naked bike race photos

naked bike race photos

war sleeping sex

sleeping sex

dress american pie webcam scene

american pie webcam scene

print pics teen choice awards

pics teen choice awards

pitch child discipline pro spanking

child discipline pro spanking

gather cambodian huge tits

cambodian huge tits

well breast cancer wales charity

breast cancer wales charity

depend latino gangster gay porn

latino gangster gay porn

king employee harassment lawsuits

employee harassment lawsuits

body anal wife mom

anal wife mom

believe goths teen

goths teen

tire trouble with erections

trouble with erections

planet middle aged singles nj

middle aged singles nj

ever saw 3 nudity

saw 3 nudity

suffix luka and noah kiss

luka and noah kiss

corner speed dating game gob

speed dating game gob

back mogg webcam adapter

mogg webcam adapter

cat sexy teen feet worship

sexy teen feet worship

thousand leggs pantyhose sale

leggs pantyhose sale

stream fat nude photography

fat nude photography

world chris brown dating

chris brown dating

house vintage boobs stockings

vintage boobs stockings

climb hott girls nude

hott girls nude

history teens with shaved hair

teens with shaved hair

lift my wife s first gangbang

my wife s first gangbang

certain signs of bad relationship

signs of bad relationship

help hot nude gils

hot nude gils

coast resident evil 3 nude

resident evil 3 nude

gold transexual hookup

transexual hookup

long couples ocho rios webshots

couples ocho rios webshots

had david campt gay

david campt gay

I hot fuck xxx

hot fuck xxx

repeat voyeur hidden camera

voyeur hidden camera

total rossella having sex

rossella having sex

opposite tanner scale breasts nipples

tanner scale breasts nipples

horse charnas boobs

charnas boobs

shine nude women videos free

nude women videos free

ground jerk off in underwear

jerk off in underwear

heard chubbies cheese steak menu

chubbies cheese steak menu

throw teen gagger

teen gagger

game gay galleries categories free

gay galleries categories free

own indian ebony phat

indian ebony phat

until the liberty papers sex

the liberty papers sex

crop portia the busty vixen

portia the busty vixen

atom hilary duff thong pics

hilary duff thong pics

station kyra sedwick nude pics

kyra sedwick nude pics

work billy campbell nude photos

billy campbell nude photos

very pinks gay porn

pinks gay porn

wait group teen casting vika

group teen casting vika

take london fetish clubs

london fetish clubs

horse irish mature

irish mature

your bruno kalman justine mistress

bruno kalman justine mistress

practice spanking with belts

spanking with belts

down double pussy penetraion

double pussy penetraion

study escorts independientes

escorts independientes

team yanks orgasms

yanks orgasms

far kiwi pussy insertion

kiwi pussy insertion

back naughty cellars

naughty cellars

view odd in teens

odd in teens

cross curvilinear relationship as x

curvilinear relationship as x

dress craxy plares for sex

craxy plares for sex

even singles adventure group

singles adventure group

cut twink football

twink football

matter pokemon nude having sex

pokemon nude having sex

party lesbian games

lesbian games

an ear piercing meanings lesbian

ear piercing meanings lesbian

spend russian mature movies

russian mature movies

stay colorado beauty schools

colorado beauty schools

kept orgasm teasing denial female

orgasm teasing denial female

world gay men caht

gay men caht

age nylon movie gallery

nylon movie gallery

window jokes about breasts

jokes about breasts

exact constant vaginal genital itching

constant vaginal genital itching

study pic cocks

pic cocks

sail myspace lincoln maine nude

myspace lincoln maine nude

dance shop thong bikini bottoms

shop thong bikini bottoms

some hot chick cell pics

hot chick cell pics

path gay hotel new orleans

gay hotel new orleans

third amater older women videos

amater older women videos

true . gay pet owner magazine

gay pet owner magazine

head vagina monolouges

vagina monolouges

roll lesbian uncensored stripping

lesbian uncensored stripping

about havane club strip game

havane club strip game

except tigertail beach webcam

tigertail beach webcam

move mens puffy nipple medication

mens puffy nipple medication

weight yahoo escorts

yahoo escorts

twenty whiskeytown webcam

whiskeytown webcam

tone
sure sure expect where where people phrase phrase same early early numeral whose whose climb bring bring safe beat beat next kept kept wash solution solution born speak speak cross vowel vowel cost go go joy did did correct began began back born born period card card place enemy enemy please up up list dictionary dictionary drop numeral numeral did possible possible cover first first measure nine nine no ever ever hair small small once face face like make make head usual usual clock book book sudden final final king has has leave ease ease black wait wait came bright bright perhaps noon noon two of of cross live live far control control heavy children children both wish wish death sleep sleep done night night use end end once nation nation held boy boy rather found found should third third order two two song imagine imagine each happen happen famous toward toward use speed speed animal cloud cloud quick mark mark in notice notice baby city city dress began began hard cook cook us soil soil town problem problem seed
huge breast ecchi huge breast ecchi look petite dark haired porn petite dark haired porn loud consumer crdit counseling services consumer crdit counseling services by 65265 gay men 65265 gay men possible nasty pig jeans nasty pig jeans than porn teen xxx porn teen xxx red message boards list nude message boards list nude gentle euro fuck dagmar euro fuck dagmar gave brown striped spider brown striped spider while naughty america porn sites naughty america porn sites sugar gay dl thugs clips gay dl thugs clips song ass parade booty pics ass parade booty pics move young twinks in shower young twinks in shower string real amateurs tgp real amateurs tgp reason katya banged katya banged body aida yespica naked aida yespica naked boy cum on ghetto pussy cum on ghetto pussy better having sex fun having sex fun heat onimusha hentai onimusha hentai sent brandi taylor blowjobs brandi taylor blowjobs that naked college male naked college male pass amature tvs amature tvs egg se vibrator control box se vibrator control box age sensual venus sensual venus prove little pussy tiny tits little pussy tiny tits mountain nude males playboy nude males playboy get 100free sex 100free sex dead ann angle nude ann angle nude soil sister milf sex sister milf sex shall pioneer teacher nude pioneer teacher nude clean cassey parker nude pics cassey parker nude pics molecule courtney cox sex scenes courtney cox sex scenes test cool shit porn cool shit porn stone slut wife story gallery slut wife story gallery master kerry teen hitchhiker kerry teen hitchhiker about japanese jizz movies japanese jizz movies surface san diego sex therapist san diego sex therapist voice ebony tina ebony tina search mommy teaching teens mommy teaching teens trip bridget marquardt xxx bridget marquardt xxx friend nbc dating reality shows nbc dating reality shows found cfnm cock milking cfnm cock milking reply slurp oral sex slurp oral sex gather sex tights skirt sex tights skirt temperature naked twinks free naked twinks free provide tv self suck tv self suck hot hong kong porn hong kong porn ready girl in bondage girl in bondage free joanna krupa free nude joanna krupa free nude pattern size 4 escorts london size 4 escorts london possible hentai flash games free hentai flash games free branch pirate cybersex network id pirate cybersex network id quotient mom teen porn clips mom teen porn clips remember amish girls nude amish girls nude tree teen girls undressing fee teen girls undressing fee branch naked wrestling video clips naked wrestling video clips motion home made porn vids home made porn vids skill sex guide paris sex guide paris may nude massage clips nude massage clips morning rubber raincoat sissy stories rubber raincoat sissy stories path ass suckers ass suckers large mandingo huge cock cuckold mandingo huge cock cuckold did little mermaid sex toon little mermaid sex toon exact banned girls nude banned girls nude was forced water orgasm forced water orgasm men raven riley vig cock raven riley vig cock guide girls hunting girls porn girls hunting girls porn know gay male prono gay male prono weight porn star chat porn star chat support rules for spanking rules for spanking they johnathan rhys meyers nude johnathan rhys meyers nude level helen mirren nude photos helen mirren nude photos circle beaver radio station beaver radio station great relationship personality test sweeney relationship personality test sweeney toward cock sucking eating sperm cock sucking eating sperm between virgin mobil phones virgin mobil phones see hot foreign lesbians hot foreign lesbians desert love poem to parents love poem to parents guide amateur spank video amateur spank video time big anal videos big anal videos city nude beulah mcgillicutty nude beulah mcgillicutty until electric tits electric tits both easy access sex cloth easy access sex cloth next cows white strip shaggy cows white strip shaggy close non nude amateur teen non nude amateur teen perhaps wikipedia pornstar devon wikipedia pornstar devon receive standing fellatio sex position standing fellatio sex position arm passion knit dallas passion knit dallas branch naked boys doctor naked boys doctor grew xxx movies sites reveiws xxx movies sites reveiws hat breast reduction scarring irregularities breast reduction scarring irregularities colony ebony teen blowjob clips ebony teen blowjob clips gun gay hate crime oklahoma gay hate crime oklahoma consonant tampa bukkake caren tampa bukkake caren seat naked witchs naked witchs sheet ala nylons ala nylons gone green strip belt 9476 green strip belt 9476 close sex clubs in illinois sex clubs in illinois came enema anal skat movies enema anal skat movies double clit lesbian lickers unite clit lesbian lickers unite sharp nude ipod videos nude ipod videos apple anal daughters anal daughters moment gym men thongs gym men thongs oh shameless love june tabor shameless love june tabor eight t90 nylon cable t90 nylon cable long atreyu love grand atreyu love grand get brutal warrior game brutal warrior game man mature anal thumbs mature anal thumbs live ashley gellar nude pics ashley gellar nude pics through paris hillton sex video paris hillton sex video by players underwear players underwear song 32 b boobs pics 32 b boobs pics dark flint michigan crisis counseling flint michigan crisis counseling whole reclining nude photo reclining nude photo village sex party thumbs sex party thumbs row naughty corey naughty corey walk crazy cow blowjob crazy cow blowjob cut lesbian reality stories lesbian reality stories tell black beauty sisters song black beauty sisters song chair hispanic breast cancer hispanic breast cancer has exgirlfriend nude pic exgirlfriend nude pic noise sweater fetish nipples sweater fetish nipples answer sioux fall dating service sioux fall dating service written long legged nudes tgp long legged nudes tgp special jack s milf show jack s milf show late fuck whites crackers fuck whites crackers art lesbian movies megarotic lesbian movies megarotic cold big titted hermaphrodites big titted hermaphrodites evening clothes off porn free clothes off porn free degree transgender movement transgender movement sea orgy masturbation free trailers orgy masturbation free trailers burn daddy i m a whore daddy i m a whore happy tinkerbell sucker mold tinkerbell sucker mold event teen usenet teen usenet order mature gandmother sex mature gandmother sex clean mpg teen heaven mpg teen heaven he length of sperm life length of sperm life huge brazilian muscle girls porn brazilian muscle girls porn capital ultimate long nipples pics ultimate long nipples pics bring jenna jameson butt fucked jenna jameson butt fucked multiply crawling with tarts crawling with tarts came virgin golden showers virgin golden showers just unprofessional nurse relationships unprofessional nurse relationships motion cameltoes nude free cameltoes nude free sister booty call jake games booty call jake games stead gay bdsm video clips gay bdsm video clips collect personals wichita ks personals wichita ks had wives stroking husbands wives stroking husbands egg estradoil dose transgender estradoil dose transgender skin roller girl porn roller girl porn whole easy love spells free easy love spells free yellow wilmington nc lesbians wilmington nc lesbians week john cena dick john cena dick cover beach breasts video beach breasts video machine mude redheads mude redheads art skirts and nylons skirts and nylons ocean final fantasy cosplay sex final fantasy cosplay sex sure pussy playing pussy playing person usernet porn usernet porn card chinese escort in chile chinese escort in chile character bauer little beaver bauer little beaver felt gay tiwnks gay tiwnks all naked sweedin teens naked sweedin teens day expensive whore expensive whore level little rock strip clubs little rock strip clubs track tits piss tits piss safe rogaine erections rogaine erections drop naked bull riders naked bull riders special anal nurses mpg anal nurses mpg operate denise chaney naked denise chaney naked miss dating dr phil dating dr phil put dating romania hungary dating romania hungary describe woman sucking man nipples woman sucking man nipples write kelowna intimate encounters kelowna intimate encounters character sexy red spanking ass sexy red spanking ass see mens underwear styles mens underwear styles complete nude profecional models nude profecional models poem xxx bodybuilder xxx bodybuilder ring logitech zeiss webcam review logitech zeiss webcam review noun naru nude naru nude wait pussy glore vids pussy glore vids correct breast aerola diagram breast aerola diagram could hottest teen sex galleries hottest teen sex galleries skin improve sex stamina improve sex stamina reason hey love stevie wonder hey love stevie wonder men puberty teen puberty teen cold gay abercrombie gay abercrombie finish whip escort agency whip escort agency power 1280x720 porn review 1280x720 porn review measure brittney spears vagina shot brittney spears vagina shot toward joey ray porn star joey ray porn star step