Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>
<title>New World Treasure, The Art of Custom Jewelry</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="keywords" content="Bracelets Necklaces Lipstick Compacts ecommerce, open source, shop, online shopping " />
<meta name="description" content="New World Treasure : - Bracelets Necklaces Lipstick Compacts ecommerce, open source, shop, online shopping" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="author" content="The Zen Cart™ Team and others" />
<meta name="generator" content="shopping cart program by Zen Cart™, http://www.zen-cart.com eCommerce" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<base href="https://newworldtreasure.com/" />
<link rel="stylesheet" type="text/css" media="print" href="includes/templates/ashley_pink/css/print_stylesheet.css" />
<link rel="stylesheet" type="text/css" href="min/?f=/includes/templates/ashley_pink/css/stylesheet.css,/includes/templates/ashley_pink/css/stylesheet_betterCategoriesEzInfo.css,/includes/templates/ashley_pink/css/stylesheet_css_buttons.css,/includes/templates/ashley_pink/css/stylesheet_dotline.css,/includes/templates/ashley_pink/css/stylesheet_footer_menu.css&1332479333" />
<script type="text/javascript" src="min/?f=/includes/templates/ashley_pink/jscript/jscript_googleanalytics.js,/includes/templates/ashley_pink/jscript/jscript_jquery.js&1332479333"></script>
<script type="text/javascript">
<!--
/*
* Easy Slider 1.7 - jQuery plugin
* written by Alen Grakalic
* http://cssglobe.com/post/4004/easy-slider-15-the-easiest-jquery-plugin-for-sliding
*
* Copyright (c) 2009 Alen Grakalic (http://cssglobe.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* Built for jQuery library
* http://jquery.com
*
*/
/*
* markup example for $("#slider").easySlider();
*
* <div id="slider">
* <ul>
* <li><img src="images/01.jpg" alt="" /></li>
* <li><img src="images/02.jpg" alt="" /></li>
* <li><img src="images/03.jpg" alt="" /></li>
* <li><img src="images/04.jpg" alt="" /></li>
* <li><img src="images/05.jpg" alt="" /></li>
* </ul>
* </div>
*
*/
(function($) {
$.fn.easySlider = function(options){
// default configuration properties
var defaults = {
prevId: 'prevBtn',
prevText: 'Previous',
nextId: 'nextBtn',
nextText: 'Next',
controlsShow: true,
controlsBefore: '',
controlsAfter: '',
controlsFade: true,
firstId: 'firstBtn',
firstText: 'First',
firstShow: false,
lastId: 'lastBtn',
lastText: 'Last',
lastShow: false,
vertical: false,
speed: 2000,
auto: false,
pause: 3000,
continuous: false,
numeric: false,
numericId: 'controls'
};
var options = $.extend(defaults, options);
this.each(function() {
var obj = $(this);
var s = $("li", obj).length;
var w = $("li", obj).width();
var h = $("li", obj).height();
var clickable = true;
obj.width(w);
obj.height(h);
obj.css("overflow","hidden");
var ts = s-1;
var t = 0;
$("ul", obj).css('width',s*w);
if(options.continuous){
$("ul", obj).prepend($("ul li:last-child", obj).clone().css("margin-left","-"+ w +"px"));
$("ul", obj).append($("ul li:nth-child(2)", obj).clone());
$("ul", obj).css('width',(s+1)*w);
};
if(!options.vertical) $("li", obj).css('float','left');
if(options.controlsShow){
var html = options.controlsBefore;
if(options.numeric){
html += '<div id="control_div"><ol id="'+ options.numericId +'"></div></ol>';
} else {
if(options.firstShow) html += '<span id="'+ options.firstId +'"><a href=\"javascript:void(0);\">'+ options.firstText +'</a></span>';
html += ' <span id="'+ options.prevId +'"><a href=\"javascript:void(0);\">'+ options.prevText +'</a></span>';
html += ' <span id="'+ options.nextId +'"><a href=\"javascript:void(0);\">'+ options.nextText +'</a></span>';
if(options.lastShow) html += ' <span id="'+ options.lastId +'"><a href=\"javascript:void(0);\">'+ options.lastText +'</a></span>';
};
html += options.controlsAfter;
$(obj).after(html);
};
if(options.numeric){
for(var i=0;i<s;i++){
$(document.createElement("li"))
.attr('id',options.numericId + (i+1))
.html('<a rel='+ i +' href=\"javascript:void(0);\">'+ (i+1) +'</a>')
.appendTo($("#"+ options.numericId))
.click(function(){
animate($("a",$(this)).attr('rel'),true);
});
};
} else {
$("a","#"+options.nextId).click(function(){
animate("next",true);
});
$("a","#"+options.prevId).click(function(){
animate("prev",true);
});
$("a","#"+options.firstId).click(function(){
animate("first",true);
});
$("a","#"+options.lastId).click(function(){
animate("last",true);
});
};
function setCurrent(i){
i = parseInt(i)+1;
$("li", "#" + options.numericId).removeClass("current");
$("li#" + options.numericId + i).addClass("current");
};
function adjust(){
if(t>ts) t=0;
if(t<0) t=ts;
if(!options.vertical) {
$("ul",obj).css("margin-left",(t*w*-1));
} else {
$("ul",obj).css("margin-left",(t*h*-1));
}
clickable = true;
if(options.numeric) setCurrent(t);
};
function animate(dir,clicked){
if (clickable){
clickable = false;
var ot = t;
switch(dir){
case "next":
t = (ot>=ts) ? (options.continuous ? t+1 : ts) : t+1;
break;
case "prev":
t = (t<=0) ? (options.continuous ? t-1 : 0) : t-1;
break;
case "first":
t = 0;
break;
case "last":
t = ts;
break;
default:
t = dir;
break;
};
var diff = Math.abs(ot-t);
var speed = diff*options.speed;
if(!options.vertical) {
p = (t*w*-1);
$("ul",obj).animate(
{ marginLeft: p },
{ queue:false, duration:speed, complete:adjust }
);
} else {
p = (t*h*-1);
$("ul",obj).animate(
{ marginTop: p },
{ queue:false, duration:speed, complete:adjust }
);
};
if(!options.continuous && options.controlsFade){
if(t==ts){
$("a","#"+options.nextId).hide();
$("a","#"+options.lastId).hide();
} else {
$("a","#"+options.nextId).show();
$("a","#"+options.lastId).show();
};
if(t==0){
$("a","#"+options.prevId).hide();
$("a","#"+options.firstId).hide();
} else {
$("a","#"+options.prevId).show();
$("a","#"+options.firstId).show();
};
};
if(clicked) clearTimeout(timeout);
if(options.auto && dir=="next" && !clicked){;
timeout = setTimeout(function(){
animate("next",false);
},diff*options.speed+options.pause);
};
};
};
// init
var timeout;
if(options.auto){;
timeout = setTimeout(function(){
animate("next",false);
},options.pause);
};
if(options.numeric) setCurrent(0);
if(!options.continuous && options.controlsFade){
$("a","#"+options.prevId).hide();
$("a","#"+options.firstId).hide();
};
});
};
})(jQuery);
-->
</script>
</head>
<body id="indexHomeBody">
<div id="mainWrapper">
<!--bof-header logo and navigation display-->
<div id="header-curr-lang">
<div id="lang_header" class="topBox centeredContent">Languages: <a href="https://newworldtreasure.com/index.php?main_page=index&language=en"><img src="includes/languages/english/images/icon.gif" alt="English" title=" English " width="22" height="24" /></a> </div><div id="currency_header" class="topBox"><form name="currencies_form_header" action="https://newworldtreasure.com/index.php?main_page=index" method="get">Currencies: <select name="currency" onchange="this.form.submit();" class="header">
<option value="USD" selected="selected">US Dollar</option>
<option value="EUR">Euro</option>
<option value="GBP">GB Pound</option>
<option value="CAD">Canadian Dollar</option>
<option value="AUD">Australian Dollar</option>
</select>
<input type="hidden" name="main_page" value="index" /></form></div><div class="clearBoth"></div>
</div>
<div id="headerWrapper">
<!--bof-branding display-->
<div id="logoWrapper">
<div id="logo"><a href="https://newworldtreasure.com/"><img src="includes/templates/ashley_pink/images/logo.gif" alt="New World Treasure" title=" New World Treasure " width="405" height="191" /></a> <div id="tagline"></div>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
<!--eof-header logo and navigation display-->
<!--bof-navigation display-->
<div id="navMainWrapper">
<div id="navMain">
<ul class="back">
<li><a href="https://newworldtreasure.com/">Home</a> | </li>
<li><a href="https://newworldtreasure.com/index.php?main_page=contact_us">Contact Us</a> | </li>
<li><a href="https://newworldtreasure.com/index.php?main_page=login">Log In</a> | </li>
<li><img src="includes/templates/ashley_pink/images/cart.jpg" class="cart-image" alt="the shopping cart" /><a href="https://newworldtreasure.com/index.php?main_page=shopping_cart">Shopping Cart - 0 item(s) - $0.00</a> | </li>
<li><a href="https://newworldtreasure.com/index.php?main_page=checkout_shipping"><span class="header-checkout">Checkout</span></a></li>
</ul>
</div>
<div id="navMainSearch"><form name="quick_find_header" action="https://newworldtreasure.com/index.php?main_page=advanced_search_result" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" class="search-header-box" maxlength="30" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" /> <input type="image" src="includes/templates/ashley_pink/buttons/english/button_search_header.gif" value="" class="search-header-button" style="width: 70px" /></form></div>
<br class="clearBoth" />
</div>
<!--eof-navigation display-->
<!--bof-optional categories tabs navigation display-->
<div id="navCatTabsWrapper">
<div id="navCatTabs">
<ul>
<li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=1">Bracelets</a> </li>
<li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=12">Lipstick Compacts</a> </li>
<li><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=8">Necklaces</a> </li>
</ul>
</div>
</div>
<!--eof-optional categories tabs navigation display-->
<!--bof-header ezpage links-->
<!--eof-header ezpage links-->
</div>
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="contentMainWrapper">
<tr>
<td id="navColumnOne" class="columnLeft" style="width: 150px">
<div id="navColumnOneWrapper" style="width: 180px"><!--// bof: categories //-->
<div class="leftBoxContainer" id="categories" style="width: 180px">
<h3 class="leftBoxHeading" id="categoriesHeading">Categories</h3>
<div id="categoriesContent" class="sideBoxContent">
<div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=1"><img src="includes/templates/ashley_pink/images/bc_cat_pointer_right.gif" alt="" width="9" height="5" />Bracelets-> (26)</a></div><div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=12"><img src="includes/templates/ashley_pink/images/bc_cat_no_sub.gif" alt="" width="9" height="5" />Lipstick Compacts (5)</a></div><div class="betterCategories"><a class="category-top" href="https://newworldtreasure.com/index.php?main_page=index&cPath=8"><img src="includes/templates/ashley_pink/images/bc_cat_pointer_right.gif" alt="" width="9" height="5" />Necklaces-> (3)</a></div><br style="line-height: 0;" /><hr id="catBoxDivider" /><br style="line-height: 0;" /><div class="betterCategories"><a class="category-links" href="https://newworldtreasure.com/index.php?main_page=products_new"><img src="includes/templates/ashley_pink/images/bc_cat_boxes.gif" alt="" width="9" height="5" />New Products ...</a></div><div class="betterCategories"><a class="category-links" href="https://newworldtreasure.com/index.php?main_page=products_all"><img src="includes/templates/ashley_pink/images/bc_cat_boxes.gif" alt="" width="9" height="5" />All Products ...</a></div></div></div>
<!--// eof: categories //-->
<!--// bof: whatsnew //-->
<div class="leftBoxContainer" id="whatsnew" style="width: 180px">
<h3 class="leftBoxHeading" id="whatsnewHeading"><a href="https://newworldtreasure.com/index.php?main_page=products_new">What's New [more]</a></h3>
<div class="sideBoxContent centeredContent">
<div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&cPath=1_11_14&products_id=14"><img src="images/turquoise.JPG" alt="Fashion Jewelry - Turquoise/Brown/Scorpion" title=" Fashion Jewelry - Turquoise/Brown/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Turquoise/Brown/Scorpion</a><div>$6.00</div></div>
<div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&cPath=1_11_14&products_id=15"><img src="images/amber.JPG" alt="Fashion Jewelry - Amber/Scorpion" title=" Fashion Jewelry - Amber/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Amber/Scorpion</a><div>$6.00</div></div>
<div class="sideBoxContentItem"><a href="https://newworldtreasure.com/index.php?main_page=product_info&cPath=1_11_14&products_id=16"><img src="images/burntorange.JPG" alt="Fashion Jewelry - Burnt Orange/Brown/Scorpion" title=" Fashion Jewelry - Burnt Orange/Brown/Scorpion " width="100" height="75" /><br />Fashion Jewelry - Burnt Orange/Brown/Scorpion</a><div>$6.00</div></div></div>
</div>
<!--// eof: whatsnew //-->
<!--// bof: reviews //-->
<div class="leftBoxContainer" id="reviews" style="width: 180px">
<h3 class="leftBoxHeading" id="reviewsHeading"><a href="https://newworldtreasure.com/index.php?main_page=reviews">Reviews [more]</a></h3>
<div id="reviewsContent" class="sideBoxContent centeredContent">There are currently no product reviews.</div></div>
<!--// eof: reviews //-->
<!--// bof: information //-->
<div class="leftBoxContainer" id="information" style="width: 180px">
<h3 class="leftBoxHeading" id="informationHeading">Information</h3>
<div id="informationContent" class="sideBoxContent">
<ul style="margin: 0; padding: 0; list-style-type: none;">
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=about_us">About Us</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=shippinginfo">Shipping & Returns</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=privacy">Privacy Notice</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=conditions">Conditions of Use</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=contact_us">Contact Us</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=site_map">Site Map</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=gv_faq">Gift Certificate FAQ</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=discount_coupon">Discount Coupons</a></div></li>
<li><div class="betterInformation"><a href="https://newworldtreasure.com/index.php?main_page=unsubscribe">Newsletter Unsubscribe</a></div></li>
</ul>
</div></div>
<!--// eof: information //-->
</div></td>
<td valign="top">
<!-- bof breadcrumb -->
<div id="navBreadCrumb">Home
</div>
<!-- eof breadcrumb -->
<!-- bof upload alerts -->
<!-- eof upload alerts -->
<div class="centerColumn" id="indexDefault">
<h1 id="indexDefaultHeading"></h1>
<h2 class="greeting">Welcome <span class="greetUser">Guest!</span> Would you like to <a href="https://newworldtreasure.com/index.php?main_page=login">log yourself in</a>?</h2>
<!-- deprecated - to use uncomment this section
<div id="" class="content">This is the main define statement for the page for english when no template defined file exists. It is located in: <strong>/includes/languages/english/index.php</strong></div>
-->
<!-- deprecated - to use uncomment this section
<div id="" class="content">Define your main Index page copy here.</div>
-->
<div id="indexDefaultMainContent" class="content">
<script type="text/javascript">
$(document).ready(function(){
$("#slider").easySlider({
auto: true,
continuous: true,
numeric: true
});
});
</script>
<div id="slider">
<ul>
<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide1.jpg" alt="first slide image" /></a></li>
<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide2.jpg" alt="second slide image" /></a></li>
<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide3.jpg" alt="third slide image" /></a></li>
<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide4.jpg" alt="fourth slide image" /></a></li>
<li><a href="https://www.newworldtreasure.com"><img src="includes/templates/ashley_pink/images/slide5.jpg" alt="fifth slide image" /></a></li>
</ul>
</div>
<div id="home-text">
<!-- <p>
<a href="http://www.youtube.com/user/ZenCartEasyHelp" target="_blank"><img src="http://www.picaflor-azul.com/pica/images/subscribe-sm.png" class="subscribe-sm" alt="subscribe to Zen Cart Easy Help Youtube Channel" /></a>
</p> -->
<!-- <p>
Read the ashley_pink_readme.html for full, step by step detailed installation instructions with links to videos for each step.
</p> -->
<!-- <p>
Once your site is ready to go live, please feel free to promote your site by uploading a screen shot of your store to our facebook fan gallery (you can do this via the wall). Be sure to include your store url and what you sell in the comments so that our huge fan base can find you.
</p> -->
<!-- <p>
<a href="http://www.facebook.com/Custom.Zen.Cart.Design" target="blank"><img src="http://www.picaflor-azul.com/pica/images/promote.png" class="promote" alt="Promote your site on our Facebook Page" /></a>
</p> -->
<!-- <p>
This content is located in the file at: /languages/english/html_includes/ashley_pink/define_main_page.php
</p> -->
<!-- <p>
You can quickly edit this content via Admin->Tools->Define Pages Editor, and select define_main_page from the pulldown.
</p> -->
</div>
</div>