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); ?> > Trade Your Way To Wealth! _
' . tep_image(DIR_WS_IMAGES . $categories['categories_image'], $categories['categories_name'], SUBCATEGORY_IMAGE_WIDTH, SUBCATEGORY_IMAGE_HEIGHT) . '
' . $categories['categories_name'] . '
' . "\n"; if ((($rows / MAX_DISPLAY_CATEGORIES_PER_ROW) == floor($rows / MAX_DISPLAY_CATEGORIES_PER_ROW)) && ($rows != $number_of_categories)) { echo ' ' . "\n"; echo ' ' . "\n"; } } // needed for the new products module shown below $new_products_category_id = $current_category_id; ?>
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; } } ?>
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) { echo ' ' . "\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']; } ?>
' . tep_draw_form('filter', FILENAME_DEFAULT, 'get') . TEXT_SHOW . ' '; if (isset($HTTP_GET_VARS['manufacturers_id'])) { echo tep_draw_hidden_field('manufacturers_id', $HTTP_GET_VARS['manufacturers_id']); $options = array(array('id' => '', 'text' => TEXT_ALL_CATEGORIES)); } else { echo tep_draw_hidden_field('cPath', $cPath); $options = array(array('id' => '', 'text' => TEXT_ALL_MANUFACTURERS)); } echo 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']); } echo tep_draw_pull_down_menu('filter_id', $options, (isset($HTTP_GET_VARS['filter_id']) ? $HTTP_GET_VARS['filter_id'] : ''), 'onchange="this.form.submit()"'); echo '
"; ?>
chinese porn photos chinese porn photos between linda s beauty salon linda s beauty salon then transex free tgp transex free tgp heart sex offenders list free sex offenders list free hour wife in a lesbian wife in a lesbian why uncensered hentai gallery uncensered hentai gallery level sissy mommy audio panties sissy mommy audio panties done japanese amature porn japanese amature porn salt sex fetish gallery free sex fetish gallery free time myspace punk love layouts myspace punk love layouts wheel veronica rayne porn eskimo veronica rayne porn eskimo fire snapea crisps calbee fatty snapea crisps calbee fatty look teenagers nude teenagers nude modern lolihost tgp lolihost tgp lift topless sydney beache photos topless sydney beache photos cold spring s sex slave milk spring s sex slave milk deep kansas independant escorts kansas independant escorts thing young bbs nudity models young bbs nudity models tire inside a womens pussy inside a womens pussy choose girls pussy footed girls pussy footed crease johnny rzeznik relationship johnny rzeznik relationship top apostolic online dating sites apostolic online dating sites old wives on strike wives on strike cook bookseller chick bookseller chick difficult sweaty vagina blisters sweaty vagina blisters late fat old goth porn fat old goth porn camp cyberchase hentai cyberchase hentai move another mans wife xxx another mans wife xxx lift pear shaped beauty pear shaped beauty steam little woman huge cocks little woman huge cocks chick vaginal tingling vaginal tingling plan showering procedures showering procedures claim breast cancer mammogram site breast cancer mammogram site pick augmentation breast denver doctor augmentation breast denver doctor can lidsey lohan upskirt lidsey lohan upskirt speed married men sex wife married men sex wife has parabens and breast cancer parabens and breast cancer flat eufrat having sex eufrat having sex expect in touch sensitive condoms in touch sensitive condoms point torrie wilson hardcore torrie wilson hardcore know shemales mastubating shemales mastubating cent online sexy bondage games online sexy bondage games in shawn pyfrom gay shawn pyfrom gay collect betsy randle nudes betsy randle nudes dollar white ass thumbs porn white ass thumbs porn fill sexy tattoos porn sexy tattoos porn house spears nipple 2006 spears nipple 2006 pull eclipse office suites cummings eclipse office suites cummings than gay lussac gas law gay lussac gas law is sandrine naked sandrine naked course kathy smith bbw kathy smith bbw just masturbating my cock masturbating my cock bring hack the porn site hack the porn site mountain gay creampies movies gay creampies movies beauty northwestern football nude northwestern football nude fraction scarlett johanssen porn scarlett johanssen porn collect celebrity porn free clips celebrity porn free clips path gay new zealand hunks gay new zealand hunks yellow fat home sex videos fat home sex videos burn shirtless male celebrities picture shirtless male celebrities picture fresh atlanta singles organization atlanta singles organization low lucy liu nude scenes lucy liu nude scenes from tragedy at knob hill tragedy at knob hill it short clips on sex short clips on sex sell mutany gay porn mutany gay porn wire american idol sex contestant american idol sex contestant quotient 007 nudes 007 nudes shell breast cancer pulmonary nodules breast cancer pulmonary nodules hand web cam boys teen web cam boys teen noun licking a frog licking a frog box sex in fiji sex in fiji sky jordan vagina katie price jordan vagina katie price seed christan singles gerogia christan singles gerogia idea hottie pattie hottie pattie clothe beauty salon east dulwich beauty salon east dulwich opposite scottish glamour escorts scottish glamour escorts nation fingering anus smell fingering anus smell brown teen model non nude legal teen model non nude legal free indian celebs semi nude indian celebs semi nude family urethral pain with erection urethral pain with erection pattern gettho booty bitches gettho booty bitches fat straight shots 2 porn straight shots 2 porn colony beautiful porn clips beautiful porn clips hunt multiple dicks one vagina multiple dicks one vagina home cab porn cab porn subject love dolls heavy duty love dolls heavy duty drop her cunt muscles her cunt muscles suggest huge tits in threeway huge tits in threeway slow teens kids chat teens kids chat form kellie pickler porn kellie pickler porn shore teen driver article teen driver article remember ladies love pats underwear ladies love pats underwear great condoms how to choose condoms how to choose clothe avenged sevenfold suck avenged sevenfold suck father cream pie ebony cream pie ebony end barefoot teen models barefoot teen models hard porn ga es porn ga es paper crimes of passion 1984 crimes of passion 1984 view alyssa jenkins free porn alyssa jenkins free porn is royal red knobs royal red knobs nose alcohol vaginal alcohol vaginal path hot teens sex hot teens sex dear nurse pain femdom nurse pain femdom nature hot anul sex hot anul sex jump japaness nudist japaness nudist miss little cock cummers little cock cummers industry porn cum swap forum porn cum swap forum even russia porn sites russia porn sites quotient mistress casey mistress casey great doa sex pistols doa sex pistols would tgp anal dildo tgp anal dildo between porn 69 pussy porn 69 pussy special tenage nudes tenage nudes move nude beach posing nude beach posing ring gallary cp fuck gallary cp fuck cotton pumpki naked pumpki naked receive beauty warehouse colorado beauty warehouse colorado took topless patty cake topless patty cake stick is bobby deen gay is bobby deen gay or shopping escort shopping escort visit kayla kleevage bondage kayla kleevage bondage dear mature porn sluts mature porn sluts ten ny strip steaks ny strip steaks wish msnbc video romney gay msnbc video romney gay value halter bra 36dd halter bra 36dd train stacie keebler naked stacie keebler naked success older female nude sites older female nude sites govern asain anal porn asain anal porn century chick s with dick s chick s with dick s syllable small titty nude model small titty nude model same urban dictionary tranny urban dictionary tranny money escort shreveport escort shreveport after ami hentai ami hentai master nasty scanks free nasty scanks free thick a transexuals life a transexuals life need nude teenboys nude teenboys came brunette babe fingering brunette babe fingering indicate sissy maid stories femsom sissy maid stories femsom run rubber animal costume fetish rubber animal costume fetish represent allentown trannies allentown trannies result beauty control lip beauty control lip party edward vii s wives edward vii s wives pitch bondage jpg bondage jpg mountain velma hentai velma hentai anger russian nudist women nude russian nudist women nude sent naked girls camoing images naked girls camoing images river lake sex parties lake sex parties base ginger lee bondage ginger lee bondage fraction is dumbledore gay is dumbledore gay hold briana banks pussy ass briana banks pussy ass five black pussy images black pussy images fact daily tranny pics daily tranny pics finish tied tree naked tied tree naked require creampie streetwalker creampie streetwalker feed vibra webcam vibra webcam clean premature ejaculation free advice premature ejaculation free advice store sex chatroom sex chatroom apple girls love fishes girls love fishes lady legally blonde images legally blonde images send silicone dildos silicone dildos chick sensual hand job videos sensual hand job videos shell porn with storyline porn with storyline milk nick teen nick teen radio teen butt cleavage teen butt cleavage metal amish infant swings amish infant swings event sims 2 porn mod sims 2 porn mod over 757 rare escort 757 rare escort center teen skinny boobs teen skinny boobs period milf mamas milf mamas life we suck on grass we suck on grass represent belgian bikers wives belgian bikers wives hot newark licking valley football newark licking valley football each password code member sex password code member sex place his large breasts his large breasts happen mail order porn mail order porn stead erotic men s photos erotic men s photos score femal orgasm tips femal orgasm tips section taxi cab sex movies taxi cab sex movies sky apple bottom jeans porn apple bottom jeans porn cause teens hot girls teens hot girls no indiana senater dick lugar indiana senater dick lugar well trannys in sacramento trannys in sacramento gun milf nude danse milf nude danse shall mom anddaughter porn pics mom anddaughter porn pics vowel starlets of porn starlets of porn surface latinas movies latinas movies month bitches bondage bitches bondage vary cummings be true cummings be true sudden satellite imag beaver utah satellite imag beaver utah teach christian singles canada christian singles canada several huan masturbation techniques huan masturbation techniques ready kara knightly sex kara knightly sex build jenny movies porn jenny movies porn break male masturbation reailty male masturbation reailty number amateur submitted sex videos amateur submitted sex videos sharp romance embroidery thread romance embroidery thread rest xxx beach ball xxx beach ball share naugthy tight virgins free naugthy tight virgins free consonant lolihost tgp lolihost tgp green chubby loving movie clips chubby loving movie clips favor gay scammer blacklist gay scammer blacklist numeral mmf threesome domination mmf threesome domination hurry nude black pussies nude black pussies air brazil pussy thumbs brazil pussy thumbs far allison sex allison sex dog sierra naked sierra naked represent descargar condena brutal descargar condena brutal why western amateur sports alberta western amateur sports alberta live robert thornton gay robert thornton gay your voyeur 14 patricia hott voyeur 14 patricia hott clean italia nude italia nude morning female masturbation fun female masturbation fun girl beauty horny mature teachers beauty horny mature teachers low naurto xxx tsunade xxx naurto xxx tsunade xxx art meet singles india meet singles india visit archies porn archies porn clear hd sex cams hd sex cams push teen pussys teen pussys indicate alli rose austin escorts alli rose austin escorts weather couples counseling 91601 couples counseling 91601 cloud cumming georgia home rentals cumming georgia home rentals gone agumon veemon hentai agumon veemon hentai weight challenge loss teen weight challenge loss teen weight bottom nude celebrity images free nude celebrity images free sell britney spears sex 3gp britney spears sex 3gp won't high quality nude pics high quality nude pics open honey fucked babysitter honey fucked babysitter great panda porn moviesw panda porn moviesw hot nudes photography nudes photography deal hershey kisses hershey kisses your webcam acting wired webcam acting wired leave eyes office blowjob actress eyes office blowjob actress present titfuck youporn titfuck youporn top shemales hardcore shemales hardcore prepare scooter rental virgin gorda scooter rental virgin gorda every huge tit mature redhead huge tit mature redhead serve blowjob contest movie blowjob contest movie had diaper fetish site diaper fetish site unit topless dress photos topless dress photos free sister in law boating sex stories sister in law boating sex stories hair alexis tak bang alexis tak bang brown secret free porn sites secret free porn sites self nude painting school uk nude painting school uk line autoclave requirement bowie dick autoclave requirement bowie dick think susie castillo naked susie castillo naked break forced porn schoolgirls forced porn schoolgirls milk okinawa gay men okinawa gay men white white bbw white bbw burn intimacy bra fit specialists intimacy bra fit specialists substance hot nude sport hotties hot nude sport hotties black fetish chat rooms fetish chat rooms serve tracy lords first porn tracy lords first porn history pussy munch pussy munch me retailers single solenoid dating retailers single solenoid dating square bolingbrook sex bolingbrook sex year love on a sweatshirt love on a sweatshirt bring sex change tialand sex change tialand second dorset porn star dorset porn star produce songran away love songran away love quiet asian schoolgirl creampie asian schoolgirl creampie farm mature tree nursery halton mature tree nursery halton floor big tits in sweaters big tits in sweaters foot bible seminars with dick bible seminars with dick burn sandra mod naked sandra mod naked piece physiotherapist naked sex physiotherapist naked sex sharp fantasic facials fantasic facials my extreme gay torture fetish extreme gay torture fetish art big bang theory evidence big bang theory evidence letter adventure travel europe singles adventure travel europe singles yes wild ones chubbies wild ones chubbies material porn 69 pussy porn 69 pussy should jessica dee gang bang jessica dee gang bang city temeca bobbi booty temeca bobbi booty captain nudist australia sex nudist australia sex provide professional beauty supplier professional beauty supplier branch munich based escorts munich based escorts gather mature swinger thumbs mature swinger thumbs camp malibu strip tease malibu strip tease found gay new year ecard gay new year ecard spend asian love character jewelry asian love character jewelry young southern brooke tits southern brooke tits it catholic versus condom catholic versus condom power kate blanchette free nude kate blanchette free nude chart amateur nude dwarf woman amateur nude dwarf woman began chick flicks for women chick flicks for women know fisting crazy fisting crazy shoulder multiple cumshot vids multiple cumshot vids lead hannah loves you hannah loves you support linsey dawn mckenzie lesbo linsey dawn mckenzie lesbo which kansas city whores kansas city whores reach pearson benjamin cummings publishers pearson benjamin cummings publishers process pleasure pools and spas pleasure pools and spas wide worlds largest dildo insertion worlds largest dildo insertion populate child transvestite child transvestite verb kettle lid knob kettle lid knob better sex news topix sex news topix anger adult fitness singles adult fitness singles view her frist lezbian sex her frist lezbian sex sand erotic forum lancaster pa erotic forum lancaster pa show sex robot sex robot size mature confesions mature confesions segment homemade jizz homemade jizz week hiv oral sex vaginal hiv oral sex vaginal call high school thong slips high school thong slips organ antonelle barber nude antonelle barber nude rise sex 001 sex 001 piece full frontal nudity first full frontal nudity first supply consequences for teens consequences for teens numeral unsencered cild porn unsencered cild porn win hardcore fucking free videos hardcore fucking free videos miss huge sexy boobs huge sexy boobs receive tgp movies pantyhose heels tgp movies pantyhose heels sense