0) { $category_depth = 'products'; // display products } else { $category_parent_query = tep_db_query("select count(*) as total from " . TABLE_CATEGORIES . " where parent_id = '" . (int)$current_category_id . "'"); $category_parent = tep_db_fetch_array($category_parent_query); if ($category_parent['total'] > 0) { $category_depth = 'nested'; // navigate through the categories } else { $category_depth = 'products'; // category has no products, but display the 'no products' message } } } require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFAULT); ?> > <?php echo TITLE; ?>
PRODUCT_LIST_MODEL, 'PRODUCT_LIST_NAME' => PRODUCT_LIST_NAME, 'PRODUCT_LIST_MANUFACTURER' => PRODUCT_LIST_MANUFACTURER, 'PRODUCT_LIST_PRICE' => PRODUCT_LIST_PRICE, 'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY, 'PRODUCT_LIST_WEIGHT' => PRODUCT_LIST_WEIGHT, 'PRODUCT_LIST_IMAGE' => PRODUCT_LIST_IMAGE, 'PRODUCT_LIST_BUY_NOW' => PRODUCT_LIST_BUY_NOW); asort($define_list); $column_list = array(); reset($define_list); while (list($key, $value) = each($define_list)) { if ($value > 0) $column_list[] = $key; } $select_column_list = ''; for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { switch ($column_list[$i]) { case 'PRODUCT_LIST_MODEL': $select_column_list .= 'p.products_model, '; break; case 'PRODUCT_LIST_NAME': $select_column_list .= 'pd.products_name, '; break; case 'PRODUCT_LIST_MANUFACTURER': $select_column_list .= 'm.manufacturers_name, '; break; case 'PRODUCT_LIST_QUANTITY': $select_column_list .= 'p.products_quantity, '; break; case 'PRODUCT_LIST_IMAGE': $select_column_list .= 'p.products_image, '; break; case 'PRODUCT_LIST_WEIGHT': $select_column_list .= 'p.products_weight, '; break; } } // show the products of a specified manufacturer if (isset($HTTP_GET_VARS['manufacturers_id'])) { if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) { // We are asked to show only a specific category $listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (" . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c ) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "'"; } else { // We show them all $listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (" . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = '1' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'"; } } else { // show the products in a given categorie if (isset($HTTP_GET_VARS['filter_id']) && tep_not_null($HTTP_GET_VARS['filter_id'])) { // We are asked to show only specific catgeory $listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from (" . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_MANUFACTURERS . " m, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and m.manufacturers_id = '" . (int)$HTTP_GET_VARS['filter_id'] . "' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$current_category_id . "'"; } else { // We show them all $listing_sql = "select " . $select_column_list . " p.products_id, p.manufacturers_id, p.products_price, p.products_tax_class_id, IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, IF(s.status, s.specials_new_products_price, p.products_price) as final_price from ((" . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p) left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c) left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_status = '1' and p.products_id = p2c.products_id and pd.products_id = p2c.products_id and pd.language_id = '" . (int)$languages_id . "' and p2c.categories_id = '" . (int)$current_category_id . "'"; } } if ( (!isset($HTTP_GET_VARS['sort'])) || (!ereg('[1-8][ad]', $HTTP_GET_VARS['sort'])) || (substr($HTTP_GET_VARS['sort'], 0, 1) > sizeof($column_list)) ) { for ($i=0, $n=sizeof($column_list); $i<$n; $i++) { if ($column_list[$i] == 'PRODUCT_LIST_NAME') { $HTTP_GET_VARS['sort'] = $i+1 . 'a'; $listing_sql .= " order by pd.products_name"; break; } } } else { $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); $listing_sql .= ' order by '; switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= "p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_NAME': $listing_sql .= "pd.products_name " . ($sort_order == 'd' ? 'desc' : ''); break; case 'PRODUCT_LIST_MANUFACTURER': $listing_sql .= "m.manufacturers_name " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_QUANTITY': $listing_sql .= "p.products_quantity " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_IMAGE': $listing_sql .= "pd.products_name"; break; case 'PRODUCT_LIST_WEIGHT': $listing_sql .= "p.products_weight " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; case 'PRODUCT_LIST_PRICE': $listing_sql .= "final_price " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; } } // optional Product List Filter $manu1=""; if (PRODUCT_LIST_FILTER > 0) { if (isset($HTTP_GET_VARS['manufacturers_id'])) { $filterlist_sql = "select distinct c.categories_id as id, cd.categories_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where p.products_status = '1' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and p2c.categories_id = cd.categories_id and cd.language_id = '" . (int)$languages_id . "' and p.manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "' order by cd.categories_name"; } else { $filterlist_sql= "select distinct m.manufacturers_id as id, m.manufacturers_name as name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_MANUFACTURERS . " m where p.products_status = '1' and p.manufacturers_id = m.manufacturers_id and p.products_id = p2c.products_id and p2c.categories_id = '" . (int)$current_category_id . "' order by m.manufacturers_name"; } $filterlist_query = tep_db_query($filterlist_sql); if (tep_db_num_rows($filterlist_query) > 1) { $manu1.= '
' . tep_draw_form('filter', FILENAME_DEFAULT, 'get') . TEXT_SHOW . ' '; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $manu1.= tep_draw_hidden_field('manufacturers_id', $HTTP_GET_VARS['manufacturers_id']); $options = array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)); } else { $manu1.= tep_draw_hidden_field('cPath', $cPath); $options = array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS)); } $manu1.= tep_draw_hidden_field('sort', $HTTP_GET_VARS['sort']); while ($filterlist = tep_db_fetch_array($filterlist_query)) { $options[] = array('id' => $filterlist['id'], 'text' => $filterlist['name']); } $manu1.= tep_draw_pull_down_menu('filter_id', $options, (isset($HTTP_GET_VARS['filter_id']) ? $HTTP_GET_VARS['filter_id'] : ''), 'onchange="this.form.submit()"'); $manu1.= '
' . "\n"; } } // Get the right image for the top-right $image = DIR_WS_IMAGES . 'table_background_list.gif'; if (isset($HTTP_GET_VARS['manufacturers_id'])) { $image = tep_db_query("select manufacturers_image from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . (int)$HTTP_GET_VARS['manufacturers_id'] . "'"); $image = tep_db_fetch_array($image); $image = $image['manufacturers_image']; } elseif ($current_category_id) { $image = tep_db_query("select categories_image from " . TABLE_CATEGORIES . " where categories_id = '" . (int)$current_category_id . "'"); $image = tep_db_fetch_array($image); $image = $image['categories_image']; } ?>
family naked russian family naked russian middle real cancun sex real cancun sex than tgirl on female tgirl on female blood gays in montgomery gays in montgomery sail babe anal fingering babe anal fingering let young sweaty naked boys young sweaty naked boys you kiss band videos kiss band videos and upskirt no undies upskirt no undies climb japanese pinup girls japanese pinup girls plan cheeky teen solo cheeky teen solo year aussie dating sites aussie dating sites capital group b strip test group b strip test difficult neigborhood sluts neigborhood sluts held period pussy pic bloody period pussy pic bloody boy chris cornell nude chris cornell nude dark foreign porn magazines foreign porn magazines rather male nude swimming male nude swimming evening swing life sex stories swing life sex stories system pet scans orgasm pet scans orgasm chord nn teen submissions nn teen submissions what the clockwork orgy the clockwork orgy put strapon fucked guy strapon fucked guy two mass lady nudes mass lady nudes up huge open pussies huge open pussies triangle granny sex anal granny sex anal pass detailed sex position pictures detailed sex position pictures yes napleton loves park illinois napleton loves park illinois her chubby blow job chubby blow job the big round fat latinas big round fat latinas bear sosua sex trip sosua sex trip can vaginal bump on labia vaginal bump on labia trip rock of love fake rock of love fake number la z boy loud bang la z boy loud bang both male multiple orgasm videos male multiple orgasm videos my silver daddie gay silver daddie gay even michigan escort agency michigan escort agency move london s big bang london s big bang bring webcam ip number webcam ip number fast shemale haley from florida shemale haley from florida experiment riverside film 2 nude riverside film 2 nude thin taylor rain triple penetration taylor rain triple penetration problem alyson taylor shemale alyson taylor shemale post hentai sexy toons hentai sexy toons row josh and gay s wedding josh and gay s wedding rock sexual impotence cure sexual impotence cure temperature nude childrens summer camp nude childrens summer camp red purchase pixel chix purchase pixel chix control love s pathway love s pathway appear amateurs casting calls amateurs casting calls else i love studs t shirt i love studs t shirt ran rhd nude rhd nude boy lesbian bash lesbian bash tie 8inch fetish boots 8inch fetish boots meet teen cum fest teen cum fest only female squirt gallerys female squirt gallerys yes teens that deep throat teens that deep throat grow aortic knob calcified aortic knob calcified soft thailand escorted tour packages thailand escorted tour packages happen upskirt anna kournikova tennis upskirt anna kournikova tennis lady larry cherry angie cock larry cherry angie cock water breasts 40 cup breasts 40 cup me spank sex free spank sex free fraction african american nude models african american nude models can miss wv teen usa miss wv teen usa reach satisfying pussy satisfying pussy beat haley paige pornstar haley paige pornstar done foobies for shemales foobies for shemales please r kelly love slide r kelly love slide own alternative sex positions alternative sex positions toward blonde single blonde single say amateur galleries net amateur galleries net once mendy vega nude mendy vega nude noun spanking male spanking male house escorts humiliation fat uk escorts humiliation fat uk proper child disc swing child disc swing mouth tgp video hanging suspension tgp video hanging suspension tall asian lesbian datings asian lesbian datings camp naked ideas ltd naked ideas ltd talk pilar montenegro sex pilar montenegro sex under sex offender registries free sex offender registries free children gay porn wii video gay porn wii video silver escorts sout west escorts sout west few daniel radcliffe nude photos daniel radcliffe nude photos food gay pride atlanta 2008 gay pride atlanta 2008 since sissy photo gallery sissy photo gallery smell gatlingburg cabins love song gatlingburg cabins love song gas oregon escort reviews oregon escort reviews include mature phone sex girls mature phone sex girls dollar winnie and mary burnside winnie and mary burnside white hot housewives nude hot housewives nude floor afrika sex afrika sex vary dick smith electronics melbourne dick smith electronics melbourne person chi chi goten sex chi chi goten sex bed red sock sex red sock sex on oral sex torrents oral sex torrents your football from pussy football from pussy finger paris sex tape clip paris sex tape clip nothing harrys pet pond xxx harrys pet pond xxx type machu picchu escorted tours machu picchu escorted tours afraid describe acute labyrinthine dysfunction describe acute labyrinthine dysfunction subject handjob stories movies movie handjob stories movies movie party wisconsin teen birthdays wisconsin teen birthdays allow fuck love quotes fuck love quotes hot embarrasing dating stories embarrasing dating stories cross jennifer love hewitt images jennifer love hewitt images help huge natural amateur huge natural amateur believe bridgette wilson xxx bridgette wilson xxx pound highway cunt highway cunt exercise baby booties pink ribbon baby booties pink ribbon girl a teens firefly a teens firefly any up close piss up close piss law baby dee porn star baby dee porn star metal nurses in sex scenes nurses in sex scenes current latin amerian nude latin amerian nude written slut wife tricked pregant slut wife tricked pregant develop twistys pornstar april twistys pornstar april between angelina jolie nude pics angelina jolie nude pics whole dallas texas spanking dallas texas spanking danger love liberty disco love liberty disco she easter chick easter chick vowel voyeur adult photos voyeur adult photos equal grany whores xxx grany whores xxx rope adjustable bondage stock adjustable bondage stock broad yahoo briefcase list pussy yahoo briefcase list pussy friend alison chang virgin ad alison chang virgin ad tail beaver dam craft fair beaver dam craft fair shore nerd hotties nerd hotties short conquer porn addictions course conquer porn addictions course liquid people into bondage people into bondage offer teen poking teen poking exact gay straight experience gay straight experience among transplanting mature trees transplanting mature trees dark spanish lady whores cum spanish lady whores cum subject teen sex view trailer teen sex view trailer idea sapphic erotic teens sapphic erotic teens spoke radical hairy pussy radical hairy pussy read lyrics alling in love lyrics alling in love old big busty mature videos big busty mature videos strange burghardt amateur center burghardt amateur center size male hetero anal sex male hetero anal sex chief tits thong tits thong man installing drawer knobs installing drawer knobs press gay toons porn gay toons porn sea cheapest teen auto insurance cheapest teen auto insurance bear amateur women pictures amateur women pictures sound pregnant milf video pregnant milf video any beaver creek police dept beaver creek police dept for mamma got big titties mamma got big titties winter lesbian tease stories lesbian tease stories excite nude tech cheerleaders nude tech cheerleaders fly black mamma porn black mamma porn soil thong peak thong peak finish make your vagina fat make your vagina fat solution brutal fights brutal fights window latina onion booty clips latina onion booty clips garden adult xxx swallow girls adult xxx swallow girls made teens camel toe honeys teens camel toe honeys country flat titted japanese girls flat titted japanese girls grew sex offender passport sex offender passport lead nl mature nl mature behind twinks at camp pics twinks at camp pics life uniforms gallery xxx uniforms gallery xxx house fuck her flash games fuck her flash games hot ken tn escort ken tn escort from topless voyeur topless voyeur century shemale on chicks shemale on chicks planet tits cut up tits cut up again only nudity only nudity radio naked hentai sex gallery naked hentai sex gallery trip stairway strip stairway strip was concertina fingering concertina fingering ground naked boyhood naked boyhood nation open nude clits open nude clits can young girl thong pic young girl thong pic row porn object insertion porn object insertion straight sapphic teen lesbians movies sapphic teen lesbians movies metal inque erotic inque erotic game british amateur radio group british amateur radio group summer easypics easypics quick poopy asshole pics poopy asshole pics quick texas 500 sex texas 500 sex tie tinkerbell animated porn tinkerbell animated porn heat spectacular horney pretty ricky spectacular horney pretty ricky example luri hentai full version luri hentai full version fire janets snatch janets snatch though lick pussy spank ass lick pussy spank ass trouble squirt bdsm squirt bdsm then roy scheider gay roy scheider gay rather father daughter sex galleries father daughter sex galleries ago lesbian clips sites free lesbian clips sites free grass naruto douji hentia naruto douji hentia possible anime orgasm anime orgasm in ponygirl stories ponygirl stories now porn by checking porn by checking child teen pull ups teen pull ups million hardcore racing flint closed hardcore racing flint closed in escort cedar rapids ia escort cedar rapids ia train escorts bronx ny escorts bronx ny seem realistic kiss realistic kiss iron edmonton escort edmonton escort state katie rees naughty photo katie rees naughty photo will artificial breast men artificial breast men depend kppx porn kppx porn cut feeding silver pheasant chick feeding silver pheasant chick meet sakura fucks gaara sakura fucks gaara sat hill ave beauty supply hill ave beauty supply wood asian girls nude forum asian girls nude forum floor mickey avalon my dick mickey avalon my dick next apariciones de la virgen apariciones de la virgen day naked ebony sluts naked ebony sluts grew boy underwear cock boy underwear cock motion 36ff jugs 36ff jugs true . sexy porn moives sexy porn moives meant boy secrets to love boy secrets to love south big ebony butts big ebony butts motion ibd sex ibd sex sky angela jolie nude movies angela jolie nude movies say embarrassing skirt underwear embarrassing skirt underwear wrote anna addison nude anna addison nude correct lebanese porn mgp lebanese porn mgp similar sexy desperate housewife sexy desperate housewife chair bdsm party pics sprout bdsm party pics sprout push pakistan reema xxx pakistan reema xxx oil pussy tattoo babes pussy tattoo babes strange t shirts and nipples t shirts and nipples region masturbation tecniques masturbation tecniques early stpries of tickle sex stpries of tickle sex ready gay love dolls gay love dolls real index doggystyle wvm index doggystyle wvm among teen males teen males receive hanson farm cumming georgia hanson farm cumming georgia count 3d porn art galleries 3d porn art galleries music husband not wanting sex husband not wanting sex syllable illustrated swimsuit model sucks illustrated swimsuit model sucks star real men sleep naked real men sleep naked chance butt sex faqs butt sex faqs choose lyprinol and breast cancer lyprinol and breast cancer sky gay sucking tricks gay sucking tricks since midwest teenage sex show midwest teenage sex show quart horse cock facials horse cock facials wind brutal hardcore brutal hardcore happy woman facial hair shave woman facial hair shave trouble porn crazy sex porn crazy sex division sex gay less painful sex gay less painful sand fake blowjob techniques fake blowjob techniques story gay models asian gay models asian type peril bondage peril bondage sun big peruvian butts big peruvian butts done flower tucci nude flower tucci nude drive play sex games outside play sex games outside surface gay life in maine gay life in maine twenty chelsea blue and naked chelsea blue and naked door korean xxx thumbnails korean xxx thumbnails dress dildo bike dildo bike night tom ammiano gay tom ammiano gay allow mechanized sex mechanized sex above ying yang love ying yang love may cadence mccahn sex cadence mccahn sex add pregnant teacher porn pregnant teacher porn spread lovely legs orgasm lovely legs orgasm stick nude japanese drummers nude japanese drummers bear horny mature housewife horny mature housewife kind 89 amatures 89 amatures cent bbw dating uk bbw dating uk else nbc sports dick nbc sports dick wood brunettes lesbian brunettes lesbian ago nudist boys penis erection nudist boys penis erection period shocking xxx vidoes shocking xxx vidoes side amateur guisborough porn amateur guisborough porn visit nashville singles club nashville singles club was parental consent sex parental consent sex brown acuvibe handheld vibrator acuvibe handheld vibrator common dvd porn uk dvd porn uk land only farmer s singles only farmer s singles broad sheer nylon soles sheer nylon soles sheet virgin galactic spaceport nm virgin galactic spaceport nm expect kellie martin nude pictures kellie martin nude pictures of celso thong men s celso thong men s vowel next butta love mp3 next butta love mp3 string deap throat xxx free deap throat xxx free now sexy clothes and underwear sexy clothes and underwear find first sexual harassment first sexual harassment colony yo hippy chick yo hippy chick shall fantasy sleeping fetish sitexxx fantasy sleeping fetish sitexxx walk escort in europe escort in europe steel synomyns for love synomyns for love past juicy porn vids juicy porn vids an aneta key fucked aneta key fucked brought nubile creampies nubile creampies paint dating website buffalo ny dating website buffalo ny break asian tits and ass asian tits and ass fight weather sex pic weather sex pic circle fat assses and tits fat assses and tits chord johnny porn star johnny porn star where cum filled teen sluts cum filled teen sluts play gardner webb poses nude gardner webb poses nude matter fatty party tv fatty party tv thought dish network gay channels dish network gay channels post anne hathaway nipples anne hathaway nipples instrument helios nude helios nude record live tv hd xxx live tv hd xxx seven basketball players nude basketball players nude gun beginners bondage kit beginners bondage kit verb soft xxx vid soft xxx vid arrange lesbo honeys lesbo honeys bottom cold water wetsuit cold water wetsuit between sex n china sex n china be russian nudist child russian nudist child perhaps sex stores in nashville sex stores in nashville quick prevention of impotence prevention of impotence press trannie dom trannie dom fresh vibrator clitoris videos vibrator clitoris videos claim virgin fear of flying virgin fear of flying near helston fuck helston fuck final christian answers masturbation christian answers masturbation century gangbang photo gangbang photo add camille sex slave camille sex slave pattern nejcpass booty nejcpass booty never logan is gay logan is gay song sex adverts in london sex adverts in london farm college chicks ass college chicks ass watch psp celebrity porn psp celebrity porn nor pictures of teen girlfriends pictures of teen girlfriends object henti small nipples henti small nipples white busty ebony milfs movies busty ebony milfs movies station impregnate white chick impregnate white chick street pussy adn legs pussy adn legs correct amatuer tgp movies amatuer tgp movies horse addicted to love screenplay addicted to love screenplay animal funny breast punctuations funny breast punctuations bad mpg ducati monster 620 mpg ducati monster 620 short paris hilton naked uncensored paris hilton naked uncensored order tigi hardcore straightner tigi hardcore straightner phrase bauer vapor xxx skates bauer vapor xxx skates degree