"blue", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ /* item color variation */ "item1" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item2" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item3" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item4" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item5" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item6" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item7" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item8" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item9" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ "item10" => "black", /* default (white) | red | blue | orange | green | lilac | black | beige | turquoise | violet */ /* layout */ "dogear" => true, /* true | false */ "date" => false, /* true | false */ "styleswitcherFont" => false, /* true | false */ "styleswitcherWidth" => false, /* true | false */ "layout" => "left", /* left | right */ /* features */ "lightbox" => true, /* true | false */ "reflection" => true, /* true | false */ "snap" => false, /* true | false */ /* style switcher */ "fontDefault" => "font-large", /* font-small | font-medium | font-large */ "widthDefault" => "width-wide", /* width-thin | width-wide | width-fluid */ "widthThinPx" => 780, /* template width for style "width-thin", (pixels) */ "widthWidePx" => 940, /* template width for style "width-wide", (pixels) */ "widthFluidPx" => 0.9, /* template width for style "width-fluid", (0.9 means 90%) */ /* top panel */ "toppanel" => true, /* true | false */ "heightToppanel" => 320, /* height of the sliding toppanel, (pixels) */ /* text */ "textToppanel" => "Top Panel", /* text label for the toppanel */ /* javascript */ "loadJavascript" => true /* true | false, set this to enable/disable all the templates javascripts */ ); // initialize settings, styleswitcher, splitmenu $ytSettings = new YtSettings($template_parameters); $ytStyleSwitcher = new YtStyleSwitcher($template_parameters); $ytMainMenu = new YtSplitMenu("mainmenu", "mainmenu"); $ytTopMenu = new YtSplitMenu("topmenu", "topnmenu"); $ytOtherMenu = new YtSplitMenu("othermenu", "othermenu"); $ytUserMenu = new YtSplitMenu("usermenu", "usermenu"); // set color cookie if(isset($_COOKIE['ytcolor'])) { $ytSettings->settings['color'] = $_COOKIE['ytcolor']; } if(isset($_GET['yt_color'])) { setcookie('ytcolor', $_GET['yt_color'], time() + 3600, '/'); $ytSettings->settings['color'] = $_GET['yt_color']; } // set css-class for topbox $topmodules = 0; if(mosCountModules('user1')) $topmodules += 1; if(mosCountModules('user2')) $topmodules += 1; if(mosCountModules('user3')) $topmodules += 1; switch ($topmodules) { case 1: $topboxwidth = "width100"; break; case 2: $topboxwidth = "width50"; break; case 3: $topboxwidth = "width33"; break; default: $topboxwidth = ""; } // set css-class for maintopbox $maintopmodules = 0; if(mosCountModules('user4')) $maintopmodules += 1; if(mosCountModules('user5')) $maintopmodules += 1; switch ($maintopmodules) { case 1: $maintopboxwidth = "width100"; break; case 2: $maintopboxwidth = "width50"; break; default: $maintopboxwidth = ""; } // set css-class for contenttopbox $contenttopmodules = 0; if(mosCountModules('advert1')) $contenttopmodules += 1; if(mosCountModules('advert2')) $contenttopmodules += 1; switch ($contenttopmodules) { case 1: $contenttopboxwidth = "width100"; break; case 2: $contenttopboxwidth = "width50"; break; default: $contenttopboxwidth = ""; } // set css-class for contentbottombox $contentbottommodules = 0; if(mosCountModules('advert3')) $contentbottommodules += 1; if(mosCountModules('advert4')) $contentbottommodules += 1; switch ($contentbottommodules) { case 1: $contentbottomboxwidth = "width100"; break; case 2: $contentbottomboxwidth = "width50"; break; default: $contentbottomboxwidth = ""; } // set css-class for mainbottombox $mainbottommodules = 0; if(mosCountModules('user6')) $mainbottommodules += 1; if(mosCountModules('user7')) $mainbottommodules += 1; switch ($mainbottommodules) { case 1: $mainbottomboxwidth = "width100"; break; case 2: $mainbottomboxwidth = "width50"; break; default: $mainbottomboxwidth = ""; } // set css-class for bottombox $bottommodules = 0; if(mosCountModules('user8')) $bottommodules += 1; if(mosCountModules('bottom')) $bottommodules += 1; if(mosCountModules('user9')) $bottommodules += 1; switch ($bottommodules) { case 1: $bottomboxwidth = "width100"; break; case 2: $bottomboxwidth = "width50"; break; case 3: $bottomboxwidth = "width33"; break; default: $bottomboxwidth = ""; } // set css-class for topbox seperators $topbox12seperator = ""; $topbox23seperator = ""; if (mosCountModules('user1') && (mosCountModules('user2') || mosCountModules('user3'))) { $topbox12seperator = "topboxseperator"; } if (mosCountModules('user2') && mosCountModules('user3')) { $topbox23seperator = "topboxseperator"; } // set css-class for maintopbox seperators $maintopbox12seperator = ""; if (mosCountModules('user4') && mosCountModules('user5')) { $maintopbox12seperator = "maintopboxseperator"; } // set css-class for mainbottombox seperators $mainbottombox12seperator = ""; if (mosCountModules('user6') && mosCountModules('user7')) { $mainbottombox12seperator = "mainbottomboxseperator"; } // set css-class for contenttopbox seperators $contenttopbox12seperator = ""; if (mosCountModules('advert1') && mosCountModules('advert2')) { $contenttopbox12seperator = "contenttopboxseperator"; } // set css-class for contentbottombox seperators $contentbottombox12seperator = ""; if (mosCountModules('advert3') && mosCountModules('advert4')) { $contentbottombox12seperator = "contentbottomboxseperator"; } // set css-class for bottombox seperators $bottombox12seperator = ""; $bottombox23seperator = ""; if (mosCountModules('user8') && (mosCountModules('bottom') || mosCountModules('user9'))) { $bottombox12seperator = "bottomboxseperator"; } if (mosCountModules('bottom') && mosCountModules('user9')) { $bottombox23seperator = "bottomboxseperator"; } // set css-class for layoutstyle if(mosCountModules('left') || ($ytOtherMenu->getMenu(1, -1) != "") || ($ytUserMenu->getMenu(1, -1) != "")) { if($ytSettings->get('layout') == "left") { $layoutstyle = "layoutleft"; } else { $layoutstyle = "layoutright"; } } else { $layoutstyle = "withoutleft"; } // set css-class for rightbackground if(mosCountModules('right')) { $rightbackground = "withright"; } else { $rightbackground = "withoutright"; } // set color (depend on item) $itemcolor = ""; if ($ytMainMenu->getActiveMenuItemNumber(1) != "-1") { if ($ytSettings->get('item' . $ytMainMenu->getActiveMenuItemNumber(1)) != "default") { $itemcolor = $ytSettings->get('item' . $ytMainMenu->getActiveMenuItemNumber(1)); } } // needed to seperate the ISO number from the language file constant _ISO $iso = explode( '=', _ISO ); ?> id ) { initEditor(); } ?> get('color') != "default") { ?> get('lightbox')) { ?> get('color') != "default") { ?> get('loadJavascript')) { ?> _ get('reflection')) { ?> _ get('lightbox')) { ?> _ _ _ get('snap')) { $js_snap = new YtSnap(); $js_snap->enableSnap(); } ?> get('dogear')) { ?>
get('toppanel') && mosCountModules('cpanel')) { ?>
close
Top Panel
get('textToppanel'); ?>
Top Panel
getMenu(1, -1) != "") || ($ytUserMenu->getMenu(1, -1) != "")) { ?>
getMenu(1, -1) != "") || ($ytUserMenu->getMenu(1, -1) != "")) { ?>
getMenu(1, -1) != "") { ?>
setAccordionStyleForLevel(1); $ytOtherMenu->setListitemBackgroundImage(true); $ytOtherMenu->showMenu(1, -1); $ytOtherMenu->setAccordionStyleForLevel(false); $ytOtherMenu->setListitemBackgroundImage(false); ?>
getMenu(1, -1) != "") { ?>
setAccordionStyleForLevel(1); $ytUserMenu->setListitemBackgroundImage(true); $ytUserMenu->showMenu(1, -1); $ytUserMenu->setAccordionStyleForLevel(false); $ytUserMenu->setListitemBackgroundImage(false); ?>
nude pics of ladies vocational schools jillian michael nudes get rid spanking catherine corbett cloud surprise quiet teens fucking animals good idea heather mills nude uncensored great idea porn star soleil casino gambling women with small pussys being true to lesbian veronika zemanova would hurt toilet servitude mistress stories on the former fetish breastfeeding extreme sports sissy cum swapping Serve the Servants melayu boleh sex iPod music moms licking sons ass pretty good mario having sex we can out other were fellation short skirt biddeford milf pulled away 106 parks rocsi nude could take ls magasine teen The contradictions of real angie dickerson nude wide variety ls girls kdz sex Search Engine nick carter jerking off Sri Lankan bondage hotels computer program ebony lips VoIP related ebony ayers fan club didnt know venus pornstar cummshots back pain film weman sex language groups babes love horse cock web sites sucking huge cocks yellow gun allow latoya jackson nudes good quality barbara bush upskirts Hunter humidifier aylar lie nude Shih Tzu pictuers of gay bodybuilders The islands are administratively schoolgirl stockings fetish video games matthew rush nude pictures new home lenda murray nude pics would take naughty alysha interracial samples mortgage rates beauty pageant gaffe dry food gay boys fuckin horseback riding beth phoenix naked world cup summer bishil nude name bio lebanese girls naked good idea breast feeding pics search engine big titi blonde fuck teenage angst brigade sharks lagoon sex game legs slightly porn on tvants third party bubble but teens pop culture home voyeur clips beautiful woman nude bangladeshi girls of human choice sabian sex machine videos United States having sex video clips get over actress traci wolfe nude a name or some small kaz nude photos sexual dysfunction john statham naked freelance writer totally tattooed naked babes spoke atom marie kelly mature porn dog food naked euro boys often used nude robin givens pics Scuola Leonardo nude girls from vermont London Underground jennette mccurdy nude back home nude hayden panettiere in music to milf riders janet good looking kristin davis porn got home vip access sex auto insurance calf sucking mans dick real estate watch teen titans online New York bisexual fuck fest dry food