

<script type="text/javascript">

//***************************************************************************
//NAME: ExecuteGoToLink						                                *
//                                                                          *
//INPUT:         1. Menu control											*
//PROCESSING:    1. Determine if the link should be opened in the same		*
//				    window or a popup and open the link accordingly			*										
//OUTPUT:        1. None													*
//***************************************************************************
function ExecuteGoToLink(objMenu)
{
	var windowHandle;
	var arrDetails;
	
	//make sure we have somewhere to go
	if(objMenu[objMenu.selectedIndex].value != '')
	{	
		//split the value into submit/normal and the page address
		arrDetails = objMenu[objMenu.selectedIndex].value.split('~~');
					
		//popup or not
		if (objMenu[objMenu.selectedIndex].value.search(/Popup/) == -1)
		{		
			//same page
			
			//submit or normal
			if (arrDetails[0] == 'SUBMIT')
			{
				document.frmMain.action = arrDetails[1];			
				document.frmMain.submit();
			}
			else
			{
				window.location = arrDetails[1];
			}
		}
		else
		{
			//popup
			
			//submit or normal
			if (arrDetails[0] == 'SUBMIT')
			{
				modJavascriptUtils_PopupWithSubmit('frmMain', arrDetails[1])
			}
			else
			{
				//open and close the window quickly to clear an already open window 
				//need to do this cos if you open a popup and then leave it open and do 
				//something that needs to open a popup you can't page can't be found the
				//first time
				windowHandle = window.open('','ContentDelPopup');
				windowHandle.close();
				
				//now open the window and load the page
				windowHandle = window.open(arrDetails[1], 'ContentDelPopup', 'screenX=50,screenY=50,dependent=no,scrollbars=no,status=yes,resizable=no,height=585,width=800', false);
				windowHandle.focus();							
			}									
		}
		
		//set the goto menu back to its first entry (usually 'Links ...')
		objMenu.selectedIndex = 0;
		
		return true;
	}		
}

</script>

<script language="javascript">

//***************************************************************************
//NAME: modValidation_ValidateKeyPress		                                *
//                                                                          *
//INPUT:         1. Keypress event											*
//				 2. Valid characters list									*
//PROCESSING:    1. Determine if the key pressed is valid					*
//OUTPUT:        1. Boolean success or failure								*
//***************************************************************************
function modValidation_ValidateKeyPress(objEvent, strValidChars)
{
	var strKeyChar;
	var intKeyCode;
	
	//get the key pressed according to IE or Mozilla rules
	if (objEvent.charCode == undefined) 
	{
		//IE
		intKeyCode = objEvent.keyCode;
		strKeyChar = String.fromCharCode(intKeyCode);
		
		//if the keycode = 13 then thats enter so just let it through
		if (intKeyCode == 13)
			return true;
	}
	else
	{
		//MOZ
		intKeyCode = objEvent.charCode;
	    strKeyChar = String.fromCharCode(intKeyCode);
	    
	    //if the key code is zero then its a special key like HOME or END so just return true
	    if (intKeyCode == 0)
			return true;
	}				    
		
	//Check if the valid chars sring has aplha chars in it, if not then validate as normal
	if(strValidChars.indexOf("A") == -1)
	{
		//is the key pressed in the valid chars string
		if (strValidChars.indexOf(strKeyChar) != -1)
		{
			return true;
		}
		else
		{
			return false;
		}
	}
	else//if the string of valid chars has alpha chars in it then allow a '
	{
		if (strKeyChar == "'")
		{
			return true;
		}
		else
		{
			//is the key pressed in the valid chars string
			if (strValidChars.indexOf(strKeyChar) != -1)
			{
				return true;
			}
			else
			{
				return false;
			}
		}
	}
}

//***************************************************************************
//NAME: modValidation_Trim					                                *
//                                                                          *
//INPUT:         1. Data to trim											*
//PROCESSING:    1. Trim the data											*
//OUTPUT:        1. Trimmed data											*
//***************************************************************************
function modValidation_Trim(strData)
{
   return strData.replace(/^\s*|\s*$/g,"");
}

//***************************************************************************
//NAME: modValidation_ValidateDataEntry		                                *
//                                                                          *
//INPUT:         1. Data to validate										*
//				 2. Valid characters list									*
//PROCESSING:    1. Determine if the given data is valid					*
//OUTPUT:        1. Boolean success or failure								*
//***************************************************************************
function modValidation_ValidateDataEntry(strData, strValidChars)
{
	var strChar;	
	var intCharCounter = 0;
	var intMessageLength = 0;
	
	//determine the message length
	if (modValidation_Trim(strData) != '')
	{
		for (intCharCounter = 0; intCharCounter < strData.length; intCharCounter++)
		{
			//get the current char
			strChar = strData.charAt(intCharCounter);
	
			//Check if the valid chars sring has alpha chars in it, if not then validate as 
			//normal
			if(strValidChars.indexOf("A") == -1)
			{
				//is the key pressed in the valid chars string
				if (strValidChars.indexOf(strChar) == -1)
				{
					return false;
				}
			}
			else//if the string of valid chars has alpha chars in it then allow a '
			{
				if (strChar == "'")
				{
					//do nothing cos its cool
				}
				else
				{
					//is the key pressed in the valid chars string
					if (strValidChars.indexOf(strChar) == -1)
					{
						return false;
					}
				}
			}			
		}
	}
	
	//got here so all must be well
	return true;	
}

//***************************************************************************
//NAME: modValidation_ValidateDataEntryWithCrLf                             *
//                                                                          *
//INPUT:         1. Data to validate										*
//				 2. Valid characters list									*
//PROCESSING:    1. Determine if the given data is valid					*
//OUTPUT:        1. Boolean success or failure								*
//***************************************************************************
function modValidation_ValidateDataEntryWithCrLf(strData, strValidChars)
{
	var strChar;	
	var intCharCounter = 0;
	var intMessageLength = 0;
	
	//determine the message length
	if (modValidation_Trim(strData) != '')
	{
		for (intCharCounter = 0; intCharCounter < strData.length; intCharCounter++)
		{
			//get the current char
			strChar = strData.charAt(intCharCounter);
	
			//Check if the valid chars sring has alpha chars in it, if not then validate as 
			//normal
			if(strValidChars.indexOf("A") == -1)
			{
				//is the key pressed in the valid chars string
				if (strValidChars.indexOf(strChar) == -1)
				{
					return false;
				}
			}
			else//if the string of valid chars has alpha chars in it then allow a ' and Cr and Lf
			{
				if (strChar == "'" || escape(strChar) == '%0A' || escape(strChar) == '%0D')
				{
					//do nothing cos its cool
				}
				else
				{
					//is the key pressed in the valid chars string
					if (strValidChars.indexOf(strChar) == -1)
					{
						return false;
					}
				}
			}			
		}
	}
	
	//got here so all must be well
	return true;	
}
</Script>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Jewellery House</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
<link rel="stylesheet" type="text/css" href="common/ddlevelsmenu-base.css" />
<link rel="stylesheet" type="text/css" href="common/ddlevelsmenu-sidebar.css" />
<script type="text/javascript" src="common/ddlevelsmenu.js"></script>


<script language="JavaScript">
function clearBoxs(box) 
{
	if(box.value==box.defaultValue) 
	{
		box.value = "";
	}
}

function popup(url) {
var popL = ((window.screen.width/2) - (370/2));
var popT = ((window.screen.height/2) - (395/2));
	newWindow = window.open(url,'daughter','menubar=no,toolbar=no,scrollbars=no,resizable=no,width=370,height=400,top=' +popT+ ',left=' +popL+ '');
	newWindow.focus();
}
</script>



</head>

<body>
<table width="770" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
						 <tr>
						 					  
						<td height="19" align="right" valign="middle" class="topBasketBar">
						
						 <A href="index.asp" class="NormalWhiteNav">Home</a>
						 |
						 <A href="contactus.asp?subj=catalogue"  class="NormalWhiteNav">Catalogue Request</a>
						 |
						 <a href="customer_service.asp"  class="NormalWhiteNav">Customer Services</a>
						 |
						 <a href="delivery.asp"  class="NormalWhiteNav">Delivery Information</a>		
						 |
						 <a href="security.asp"  class="NormalWhiteNav">Secure Online Shopping</a>
						 &nbsp;&nbsp;
						
							<A href="basket.asp" class="BoldWhiteNav">Basket</a>
							
								is Empty
								
							</td>
							</tr>
  <tr>
    <td align="left" valign="top" class="base"><table width="770" height="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="234" align="left" valign="top"><table width="234" height="100%" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td height="107" align="left" valign="top"><a href="index.asp"><img src="images/logo.jpg" title="Jewellery House" width="234" height="107" border="0"></a></td>
          </tr>
          <tr>
			<td height="219" align="center" valign="top" class="menubg">
					<table width="180" border="0" cellspacing="0" cellpadding="0">
		<tr>
			<td width="30" height="38">&nbsp;</td>
			<td width="150" height="38">&nbsp;</td>
		</tr>
		<tr>
			<td width="30" height="30" align="center" valign="middle"><img src="images/cube.gif" width="8" height="8"></td>
			<td width="150" height="30" align="left" valign="middle"><a href="AboutUs.asp" class="menus">about us</a></td>
		</tr>
		<tr>
			<td width="30" height="30" align="center" valign="middle"><img src="images/cube.gif" width="8" height="8"></td>
			<td width="150" height="30" align="left" valign="middle"><a href="SpecialOffers.asp" class="menus">special offers</a></td>
		</tr>
		<tr>
			<td width="30" height="30" align="center" valign="middle"><img src="images/cube.gif" width="8" height="8"></td>
			<td width="150" height="30" align="left" valign="middle"><a href="whatsnew.asp" class="menus">what&rsquo;s new</a></td>
		</tr>
		<tr>
			<td width="30" height="30" align="center" valign="middle"><img src="images/cube.gif" width="8" height="8"></td>
			<td width="150" height="30" align="left" valign="middle"><a href="giftideas.asp" class="menus">gift ideas</a></td>
		</tr>
		<tr>
			<td width="30" height="30" align="center" valign="middle"><img src="images/cube.gif" width="8" height="8"></td>
			<td width="150" height="30" align="left" valign="middle"><a href="ContactUs.asp" class="menus">contact us</a>
			</td>
		</tr>
	</table>
			</td>
          </tr>
          <tr>
            <td align="center" valign="top"  class="menubgWithoutBottomBorder">
						
			<table width="100%" border="0" cellspacing="0" cellpadding="4">
			<form name="frmMain" id="frmMain" method="post" action="product_search.asp">
				<tr>
					<td width="80%" align="right" height="50px;">
						<input name="Keyword"  style="height:28px; padding:5px;" type="text" value="Search Our Site" onFocus="clearBoxs(this);" size="27" maxlength="30" class="FormFieldGenericNoBGImage"/>
					</td>			
					<td width="20%" align="left">
						<a href="#" onclick="document.frmMain.submit();">Search</a>
					</td>
				</tr>	
				</form>	
			</table>
					
			</td>
          </tr>		  
          <tr>
            <td height="449" align="center" valign="top" class="categories">
						<table width="180" height="100%" border="0" cellpadding="0" cellspacing="0">
			 <tr>
                <td align="left" valign="top">
				<table width="180" border="0" cellspacing="0" cellpadding="0">
	                  <tr>
	                    <td height="28">
							<div id="ddsidemenubar" class="markermenu">
								<div style="margin-top:5px; COLOR: #ffffff; FONT-SIZE: 18px; FONT-FAMILY: Verdana;">Gold</div>
								<ul>
																		
									<li><a href="view_products.asp?rid=15" rel="ddsubmenuside15">Wedding Bands </a></li>
																		
									<li><a href="view_products.asp?rid=16" rel="ddsubmenuside16">Bangles </a></li>
																		
									<li><a href="view_products.asp?rid=17" rel="ddsubmenuside17">Bracelets </a></li>
																		
									<li><a href="view_products.asp?rid=18" rel="ddsubmenuside18">Chains </a></li>
																		
									<li><a href="view_products.asp?rid=19" rel="ddsubmenuside19">Earrings </a></li>
																		
									<li><a href="view_products.asp?rid=20" rel="ddsubmenuside20">Pendants </a></li>
																		
									<li><a href="view_products.asp?rid=21" rel="ddsubmenuside21">Rings </a></li>
										
								 <br>
								<div style="margin-top:5px; COLOR: #ffffff; FONT-SIZE: 18px; FONT-FAMILY: Verdana;">Silver</div>
																		
									<li><a href="view_products.asp?rid=25" rel="ddsubmenuside25">Bangles </a></li>
																		
									<li><a href="view_products.asp?rid=26" rel="ddsubmenuside26">Bracelets </a></li>
																		
									<li><a href="view_products.asp?rid=27" rel="ddsubmenuside27">Chains </a></li>
																		
									<li><a href="view_products.asp?rid=28" rel="ddsubmenuside28">Earrings </a></li>
																		
									<li><a href="view_products.asp?rid=29" rel="ddsubmenuside29">Pendants </a></li>
																		
									<li><a href="view_products.asp?rid=30" rel="ddsubmenuside30">Rings </a></li>
									
								 <br>
								<div style="margin-top:5px; COLOR: #ffffff; FONT-SIZE: 18px; FONT-FAMILY: Verdana;">Diamond</div>
																		
									<li><a href="view_products.asp?rid=22" rel="ddsubmenuside22">Rings </a></li>
																		
									<li><a href="view_products.asp?rid=23" rel="ddsubmenuside23">Studs &amp; Hoops </a></li>
																		
									<li><a href="view_products.asp?rid=24" rel="ddsubmenuside24">Pendants </a></li>
									
								 
								</ul>
							</div>
						</td>
	                  </tr>
                </table>
				</td>
              </tr>
			  	  
            </table>
		<script type="text/javascript">
		ddlevelsmenu.setup("ddsidemenubar", "sidebar") //ddlevelsmenu.setup("mainmenuid", "topbar|sidebar")
		</script>				
		

						
			</td>
          </tr>
          <tr>
            <td height="154" align="left" valign="top"><img src="images/showroom.jpg" width="234" height="154"></td>
          </tr>
          <tr>
            <td height="6" align="left" valign="top" background="images/whitebg.gif" style="background-repeat:repeat-y;"><img src="images/blank_img.gif" width="1" height="6"></td>
          </tr>
        </table></td>
        <td width="536" align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td height="107" align="left" valign="top"><img src="images/insideheader.jpg" width="536" height="107"></td>
          </tr>
          

          <tr>
            <td align="center" valign="top"><table width="486" border="0" cellspacing="0" cellpadding="0">
              <tr>
                <td height="40" align="left" valign="middle" class="welcome">
					<div id="ProductsHeader">
					Chains  | Necklets Shop
					
					</div>
				</td>
              </tr>
              <tr>
                <td align="left" valign="top">
											
								<div class="TiledViewProducts">
									<div class="Image-hold">
										<a href="single_product.asp?pid=35"> 
											<img src="images/nk103L.jpg" border="0">
										</a>
									</div>
									<div class="Header">
										<a href="single_product.asp?pid=35">
											Single Dog Tag Chain
										</a>
									</div>
									<div class="Info">
										<p>&nbsp;</p>
										<p>Yellow Gold Single Dog Tag Neckchain</p>
										<br>
										<p><span class="ProductsPrice">Our Price £337.00 inc VAT</span>&nbsp;</p>
										<br>
										<a href="single_product.asp?pid=35" title="Click to view more info about this product">More Info</a>
									</div>			
								</div>
														
								<div class="TiledViewProducts">
									<div class="Image-hold">
										<a href="single_product.asp?pid=36"> 
											<img src="images/nk103wL.jpg" border="0">
										</a>
									</div>
									<div class="Header">
										<a href="single_product.asp?pid=36">
											Single Dog Tag Chain
										</a>
									</div>
									<div class="Info">
										<p>&nbsp;</p>
										<p>White Gold Single Dog Tag Neckchain</p>
										<br>
										<p><span class="ProductsPrice">Our Price £347.00 inc VAT</span>&nbsp;</p>
										<br>
										<a href="single_product.asp?pid=36" title="Click to view more info about this product">More Info</a>
									</div>			
								</div>
								 	
					</td>
				</tr>
				</table>
			</td>
          </tr>
          <tr>
            <td height="25" align="center" valign="top">
								<br>
				<p>
					<a href="SpecialOffers.asp" class="toppadding">
						<img src="images/discountbanner.jpg" width="487" height="127" border="0" class="toppadding">
					</a>
				</p>		
             </td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td height="45" align="left" valign="top">
			<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-9729444-1");
pageTracker._trackPageview();
} catch(err) {}</script>
	<table width="770" height="20px;" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td class="copyright" align="center">
			Copyright © All Rights Reserved. Registered in England no 5763692. Sasa Trading Limited 74B Shopping City, Wood Green, London N22 6YE	
			 | <a class="SideBlackNav" href="http://www.sasajewellery.com/">Sasa Jewellery</a> 
		<br>
		<div class="ContentDiv">
			<img height="31" width="291" title="Credit &amp; Debit Cards Accepted" alt="Credit &amp; Debit Cards Accepted" src="/images/ccards.gif"/>    
				<a href="http://www.sasajewellery.com/security.asp">
					<img height="31" border="0" width="53" title="Verified by Visa" alt="Verified by Visa" src="/images/visa3d.gif"/>
				</a>    
				<a href="http://www.sasajewellery.com/security.asp">
					<img height="31" border="0" width="61" title="Mastercard Securecode" alt="Mastercard Securecode" src="/images/mc3d.gif"/>
				</a>   
				<a href="http://www.sasajewellery.com/security.asp">
					<img height="31" border="0" width="68" title="SSL Certified" alt="SSL Certified" src="/images/ssl-small.gif"/>
				</a>
		</div>
		<br>
		</td>
      </tr>
    </table>		
	</td>
  </tr>
</table>

			
			<ul id="ddsubmenuside15" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=4&rid=15">Ladies &amp; Gents</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside16" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=5&rid=16">Baby Bangles</a></li>
				<li><a href="view_products.asp?intSubCat=6&rid=16">Ladies Bangles</a></li>
				<li><a href="view_products.asp?intSubCat=7&rid=16">Gents Bangles</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside17" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=8&rid=17">Ladies Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=9&rid=17">Baby Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=10&rid=17">Baby ID  Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=11&rid=17">Lady&#8217;s ID Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=12&rid=17">Gent&#8217;s Id Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=13&rid=17">Cast Gent&#8217;s Bracelets</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside18" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=14&rid=18">Necklets</a></li>
				<li><a href="view_products.asp?intSubCat=15&rid=18">Rosary</a></li>
				<li><a href="view_products.asp?intSubCat=16&rid=18">Figaro Chains</a></li>
				<li><a href="view_products.asp?intSubCat=17&rid=18">Curb Chains</a></li>
				<li><a href="view_products.asp?intSubCat=18&rid=18">Pave Figaro Chains&amp; Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=19&rid=18">Men&#8217;s Long Fancy Chains</a></li>
				<li><a href="view_products.asp?intSubCat=20&rid=18">Diamond Cut Chains</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside19" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=21&rid=19">Studs</a></li>
				<li><a href="view_products.asp?intSubCat=22&rid=19">Crystals</a></li>
				<li><a href="view_products.asp?intSubCat=23&rid=19">Huggies</a></li>
				<li><a href="view_products.asp?intSubCat=24&rid=19">Hoops</a></li>
				<li><a href="view_products.asp?intSubCat=25&rid=19">Creole Earrings</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside20" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=26&rid=20">Birthday Pendants</a></li>
				<li><a href="view_products.asp?intSubCat=28&rid=20">St Christopher&#8217;s &amp; Bibles</a></li>
				<li><a href="view_products.asp?intSubCat=29&rid=20">Charms</a></li>
				<li><a href="view_products.asp?intSubCat=30&rid=20">Initial Pendants</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside21" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=31&rid=21">Ladies</a></li>
				<li><a href="view_products.asp?intSubCat=32&rid=21">Gents</a></li>
				<li><a href="view_products.asp?intSubCat=33&rid=21">Babies</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside22" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=34&rid=22">18 ct Diamond rings</a></li>
				<li><a href="view_products.asp?intSubCat=35&rid=22">9 ct diamond rings</a></li>
				<li><a href="view_products.asp?intSubCat=36&rid=22">9 ct low cost diamond</a></li>
				<li><a href="view_products.asp?intSubCat=39&rid=22">9 ct Gents Princess cut diamond rings</a></li>
				<li><a href="view_products.asp?intSubCat=40&rid=22">9 ct low cost  Precious stone with diamond accent rings</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside23" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=41&rid=23">18 ct diamond princess cut studs and hoops</a></li>
				<li><a href="view_products.asp?intSubCat=42&rid=23">9 ct diamond princess cut studs</a></li>
				<li><a href="view_products.asp?intSubCat=45&rid=23">9 ct low cost diamond earrings</a></li>
				<li><a href="view_products.asp?intSubCat=44&rid=23">9 ct diamond studs</a></li>
				<li><a href="view_products.asp?intSubCat=47&rid=23">9 ct low cost cluster set diamond Bracelets</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside24" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=48&rid=24">18 ct diamond pendants</a></li>
				<li><a href="view_products.asp?intSubCat=49&rid=24">9 ct diamond pendants</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside25" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=50&rid=25">Baby Bangles</a></li>
				<li><a href="view_products.asp?intSubCat=51&rid=25">Ladies Bangles</a></li>
				<li><a href="view_products.asp?intSubCat=52&rid=25">Gents Torq Bangles</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside26" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=87&rid=26">Cast Baby Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=53&rid=26">Ladies Charm Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=56&rid=26">Baby ID Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=58&rid=26">Ladies ID Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=59&rid=26">Gents ID Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=60&rid=26">Mum Cast Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=62&rid=26">Link Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=63&rid=26">Ladies CZ Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=65&rid=26">Cast Gents Bracelets</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside27" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=68&rid=27">Snake Chains</a></li>
				<li><a href="view_products.asp?intSubCat=69&rid=27">Ball Chains</a></li>
				<li><a href="view_products.asp?intSubCat=70&rid=27">Curb Chains</a></li>
				<li><a href="view_products.asp?intSubCat=67&rid=27">Belcher Chains</a></li>
				<li><a href="view_products.asp?intSubCat=71&rid=27">Figaro Chains &amp; Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=72&rid=27">Curb Pave Chains &amp; Bracelets</a></li>
				<li><a href="view_products.asp?intSubCat=73&rid=27">Flat Byzantine Chains &amp; Bracelets</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside28" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=74&rid=28">Studs</a></li>
				<li><a href="view_products.asp?intSubCat=75&rid=28">CZ Stud Earrings</a></li>
				<li><a href="view_products.asp?intSubCat=76&rid=28">Gents &amp; CZ Studs</a></li>
				<li><a href="view_products.asp?intSubCat=77&rid=28">Crystal Earrings</a></li>
				<li><a href="view_products.asp?intSubCat=78&rid=28">Hoops</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside29" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=79&rid=29">Bling Pendants</a></li>
				<li><a href="view_products.asp?intSubCat=80&rid=29">Initial Pendants</a></li>
				<li><a href="view_products.asp?intSubCat=81&rid=29">Birthday Pendants</a></li>
				<li><a href="view_products.asp?intSubCat=82&rid=29">Plain Pendants</a></li>
				<li><a href="view_products.asp?intSubCat=83&rid=29">Charm Pendants</a></li>
			</ul>
			
		
			
			<ul id="ddsubmenuside30" class="ddsubmenustyle blackwhite">
				
				<li><a href="view_products.asp?intSubCat=84&rid=30">Wedding Rings</a></li>
				<li><a href="view_products.asp?intSubCat=85&rid=30">Celtic Rings</a></li>
				<li><a href="view_products.asp?intSubCat=86&rid=30">Men&#8217;s Bling Rings</a></li>
			</ul>
			
		
</body>
</html>
