<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Titanium Ring And Turk’s Head Wedding Ring</title>
	<atom:link href="http://www.aris-titanium.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aris-titanium.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Tue, 21 Feb 2012 10:23:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title></title>
		<link>http://www.aris-titanium.com/2739/</link>
		<comments>http://www.aris-titanium.com/2739/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 07:58:21 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.aris-titanium.com/?p=2739</guid>
		<description><![CDATA[Address: Eilat Marina. Eilat 88000, Israel Tel: +972 8 6338511 Fax: +972 8 6338511  Copyright &#8211; 2012 Aris-titanium.com  Web Design: SHIRLY SCHWARTZ &#8211; butterflydesign2011@gmail.com Thanks to: liner design &#38; Michieli Web Design &#38; Development // Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content ********************************************************/ var tmppluginServername [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;"><span style="font-family: Times,palatino;">Address: Eilat Marina. Eilat 88000, Israel Tel: +972 8 6338511 Fax: +972 8 6338511 </span></h3>
<h3 style="text-align: center;"><span style="font-family: Times,palatino;">Copyright &#8211; 2012 Aris-titanium.com  </span></h3>
<h3 style="text-align: center;"><span style="font-family: Times,palatino;"> Web Design: <strong>SHIRLY SCHWARTZ</strong> &#8211; <a href="mailto:ButterflyDesign2011@gmail.com" target="_blank">butterflydesign2011@gmail.com</a></span></h3>
<p style="text-align: center;"><span style="font-family: Times,palatino; font-size: small;"> Thanks to: liner design &amp; Michieli Web Design &amp; Development</span></p>
<p><script type="text/javascript">// <![CDATA[
	/********************************************************
	This Script will be included in all web pages 
	to show an Icon on Mouse over, </p>
<p>	Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content</p>
<p>	********************************************************/
	var tmppluginServername = "http://www.zoominto.com/zoomapi/";
//tmppluginServername= "http://localhost:9999/zoomapi/"
	var versionswf="1100";</p>
<p>	versionswf="";</p>
<p>	var tmppluginSwfname=""</p>
<p>	tmppluginSwfname=tmppluginServername  + "zoomplugin" + versionswf + ".swf";</p>
<p>	var tmppluginimageURL=tmppluginServername + "displayimage.php?image=";</p>
<p>    var protocol = "http://";</p>
<p>    var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;</p>
<p>	plugin_run();</p>
<p>    function BrowserZoomPlugin() {
        var ua, s, i;
        this.isIE = false;
        this.isNS = false;
        this.version = null; 
        ua = navigator.userAgent;
        s = "MSIE";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isIE = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Netscape6/";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Gecko";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = 6.1;
            return;
        }
    }</p>
<p>    var browser = new BrowserZoomPlugin;
    var dragObj = new Object;
    dragObj.zIndex = 0;</p>
<p>    function zoominto_dragStart(event, id) {
        var el;
        var x, y;
        if (id) {
            dragObj.elNode = document.getElementById(id);
        } else {
            if (browser.isIE) {
                dragObj.elNode = window.event.srcElement;
            }
            if (browser.isNS) {
                dragObj.elNode = event.target;
            }
            if (dragObj.elNode.nodeType == 3) {
                dragObj.elNode = dragObj.elNode.parentNode;
            }
        }
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.cursorStartX = x;
        dragObj.cursorStartY = y;
        dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
        dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
        if (isNaN(dragObj.elStartLeft)) {
            dragObj.elStartLeft = 0;
        }
        if (isNaN(dragObj.elStartTop)) {
            dragObj.elStartTop = 0;
        }
        dragObj.elNode.style.zIndex = ++dragObj.zIndex;
        if (browser.isIE) {
            document.attachEvent("onmousemove", zoominto_dragGo);
            document.attachEvent("onmouseup", zoominto_dragStop);
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            document.addEventListener("mousemove", zoominto_dragGo, true);
            document.addEventListener("mouseup", zoominto_dragStop, true);
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragGo(event) {
        var x, y;
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px";
        dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px";
        if (browser.isIE) {
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragStop(event) {
        if (browser.isIE) {
            document.detachEvent("onmousemove", zoominto_dragGo);
            document.detachEvent("onmouseup", zoominto_dragStop);
        }
        if (browser.isNS) {
            document.removeEventListener("mousemove", zoominto_dragGo, true);
            document.removeEventListener("mouseup", zoominto_dragStop, true);
        }
    }</p>
<p>    function imgplayerprogress_DoFSCommand(command, args) {
        var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
    }</p>
<p>    function zoominto_addElement(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.setAttribute("title", "");
            newdiv.style.position = "absolute";
            newdiv.style.display = "none";
            newdiv.innerHTML = htmlval;</p>
<p>			document.body.appendChild(newdiv);;
        } catch (e) {
        }
    }</p>
<p>    function zoominto_addmyelems(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.innerHTML = htmlval;</p>
<p>		   document.body.appendChild(newdiv);;
        } catch (e) {
			//_L(e);
        }
    }</p>
<p>    function zoominto_initializelements() {</p>
<p>        zoominto_addElement("plugpanel", "<a href='javascript:zoominto_showflash()'><img class='myplug_img' src='" + tmppluginServername + "zoomicon.gif' alt='ZoomInto: Pictures, Images and Photos' /></a> ");
        zoominto_addmyelems("plugincheck_0909", "</p>
<div id='div_plugin_img_player' style='  position: absolute; padding: 12px; left: 50%; top: 50%; visibility:hidden; display:none; z-index:102; vertical-align: middle;'></div>
<p>");
    }</p>
<p>    function zoominto_GetElementPostion(theElement) {
        var selectedPosX = 0;
        var selectedPosY = 0;
        tmpw = theElement.width;
        tmph = theElement.height;
        while (theElement != null) {
            selectedPosX += theElement.offsetLeft;
            selectedPosY += theElement.offsetTop;
            theElement = theElement.offsetParent;
        }
        var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
        return tempelement;
    }</p>
<p>    function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
        var scrolledX, scrolledY;
        if (self.pageYOffset) {
            scrolledX = self.pageXOffset;
            scrolledY = self.pageYOffset;
        } else if (document.documentElement &#038;&#038; document.documentElement.scrollTop) {
            scrolledX = document.documentElement.scrollLeft;
            scrolledY = document.documentElement.scrollTop;
        } else if (document.body) {
            scrolledX = document.body.scrollLeft;
            scrolledY = document.body.scrollTop;
        }
        var centerX, centerY;
        if (self.innerHeight) {
            centerX = self.innerWidth;
            centerY = self.innerHeight;
        } else if (document.documentElement &#038;&#038;
            document.documentElement.clientHeight) {
            centerX = document.documentElement.clientWidth;
            centerY = document.documentElement.clientHeight;
        } else if (document.body) {
            centerX = document.body.clientWidth;
            centerY = document.body.clientHeight;
        }
        var leftOffset = scrolledX + (centerX - Xwidth) / 2;
        var topOffset = scrolledY + (centerY - Yheight) / 2;
        var o = document.getElementById(divid);
        var r = o.style;
        r.position = "absolute";
        r.top = topOffset + "px";
        r.left = leftOffset + "px";
        r.display = "block";
    }</p>
<p>    function pluginalertShow(layerid) {
        document.getElementById(layerid).style.visibility = "visible";
        document.getElementById(layerid).style.display = "block";
        plugin_showdeadcenterdiv(280, 115, layerid);
        document.getElementById("plugin_btn_activate").focus();
    }</p>
<p>    function pluginalerthide(layerid) {
        document.getElementById(layerid).style.visibility = "hidden";
        document.getElementById(layerid).style.display = "none";
    }</p>
<p>	function zoom_getValidString(){</p>
<p>		return "&#038;isValidviewer=1";// all things are valid</p>
<p>	 }</p>
<p>    function zoominto_showflash(zoomres) {</p>
<p>        try{
			if(zoomres == undefined)
				zoomres="600x442";</p>
<p>			zoomarr=zoomres.split("x",2)
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "block";
        divimgplayer.style.visibility = "visible";</p>
<p>		//old movie 550 400
         // plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player");
		  plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, "div_plugin_img_player");
     //   zoominto_setImage();</p>
<p>         zoominto_changeobject(document.getElementById("plugpanel").title,zoomres);</p>
<p>	        } catch (e) {
        }</p>
<p>    }</p>
<p>    function zoominto_closeflash() {
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "none";
        divimgplayer.style.visibility = "hidden";
    }</p>
<p>function hidezoomicon(){
document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>}</p>
<p>    function getMouseX( e ) {</p>
<p>    return e.pageX</p>
<p>    || ( e.clientX + ( document.documentElement.scrollLeft</p>
<p>    || document.body.scrollLeft ) );</p>
<p>    }</p>
<p>    function getMouseY( e ) {</p>
<p>    return e.pageY</p>
<p>    || ( e.clientY + ( document.documentElement.scrollTop</p>
<p>    || document.body.scrollTop ) );</p>
<p>      }</p>
<p>function dhtmlLoadScript(url)
{
   var e = document.createElement("script");
   e.src = url;
   e.type="text/javascript";
//   document.getElementByTagName("head")[0].appendChild(e);</p>
<p>    document.getElementById("addiv").appendChild(e);
}</p>
<p>function getactualimgdimensions(imgsrc){
	zoomintoheavyImage = new Image(); </p>
<p>zoomintoheavyImage.src = imgsrc</p>
<p> var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
        return tempelement;</p>
<p>}
    function plugin_run() {</p>
<p> var newcss = "#div_plugin_img_player td {padding:0;} \n #div_plugin_img_player th {padding:0;}";</p>
<p>    if ('\v'=='v') /* ie only */ {
        document.createStyleSheet().cssText = newcss;
    } else {
        var tag = document.createElement('style'); tag.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(tag); 
        tag[ (typeof document.body.style.WebkitAppearance=='string') /* webkit only */ ? 'innerText' : 'innerHTML'] = newcss;    
    }</p>
<p>		     var image = document.getElementsByTagName("img");
		var totimgLength=image.length;</p>
<p>        zoominto_initializelements();</p>
<p>        for (var i = 0; i < image.length; i++) {</p>
<p>			 if (image[i].className.match("myplug_img")){
				     image[i].onmouseout = function (evt) { 
						document.getElementById("plugpanel").style.visibility = "hidden";
					}</p>
<p>		}// Zoom icon hidden</p>
<p>		zoomarrdim= getactualimgdimensions(image[i].src);
		//arrdim[0] - width  arrdim[1] - height</p>
<p>            if (!image[i].className.match("myplug_img") &#038;&#038;
                zoomarrdim[0] > 50 &#038;&#038; zoomarrdim[1] > 60) {</p>
<p>                image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);</p>
<p>				document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style.visibility = "visible";document.getElementById("plugpanel").style.left = imgvals[0] + "px";document.getElementById("plugpanel").style.top = imgvals[1] +  "px";document.getElementById("plugpanel").title = this.src;};
                image[i].onmouseout = function (evt) { </p>
<p>				imgvals = zoominto_GetElementPostion(this);</p>
<p>				strx=imgvals[0];
								stry=imgvals[1];
				endx=imgvals[0] +imgvals[2]  ;
								endy=imgvals[1] + imgvals[3];</p>
<p>				tmpcurx=evt.pageX;
				tmpcury=evt.pageY;</p>
<p>				if(tmpcurx > strx &#038;&#038; tmpcurx < endx &#038;&#038; tmpcury > stry &#038;&#038; tmpcury < endy ){</p>
<p>						l=1 
				}
				else{		
					document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>				}</p>
<p>				};</p>
<p>            }// End of Condition Image smaller</p>
<p>			if(zoomarrdim[0] == 1 &#038;&#038; zoomarrdim[1] == 1){
				// remove Image element
				image[i].style.display="none";
								image[i].style.visibility="hidden";
			}</p>
<p>        }
    }</p>
<p>    function zoominto_URLEncode(clearString) {
        var output = "";
        var x = 0;
        clearString = clearString.toString();
        var regex = /(^[a-zA-Z0-9_.]*)/;
        while (x < clearString.length) {
            var match = regex.exec(clearString.substr(x));
            if (match != null &#038;&#038; match.length > 1 &#038;&#038; match[1] != "") {
                output += match[1];
                x += match[1].length;
            } else {
                if (clearString[x] == " ") {
                    output += "+";
                } else {
                    var charCode = clearString.charCodeAt(x);
                    var hexVal = charCode.toString(16);
                    output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
                }
                x++;
            }
        }
        return output;
    }</p>
<p>    function Closeiepluginpanel() {
        closeflash();  
    }</p>
<p>    function logme(txtstr) {
//        try {
        //alert(txtstr);
		return "";</p>
<p>    }</p>
<p>    function zoominto_changeobject(url,zoomres) {
		//Method to Display the Viewer for Image</p>
<p>		imgName_bfr=(tmppluginimageURL +url + zoom_getValidString())</p>
<p>		escimgName_bfr=escape(imgName_bfr);</p>
<p>        trkval = "?chkme=" + imgName_bfr + "&#038;rootstr=" + tmppluginServername;
        pagetitle = "";
        urlstr = zoominto_URLEncode(document.location);
	zoomarr=zoomres.split("x",2)</p>
<p>		 playerwidth=parseInt(zoomarr[0]);// 800
		 tablewidth=playerwidth ;//-2 ;//798
		 playerheight=parseInt(zoomarr[1]);//600;</p>
<p>		  adwidth=468;//playerwidth -10 ;//768;
		 adheight=60;</p>
<p>	   document.getElementById("div_plugin_img_player").innerHTML = "</p>
<div onmousedown=\"zoominto_dragStart(event, 'div_plugin_img_player')\"  style='height:24px;margin-left:0px;position:relative;width: "+playerwidth +"px; z-index: 99; background-color:#ECECEC'> <MAP NAME='zoomintomap187'>    </p>
<area shape='rect' coords='0,0,108,24' href='http://www.zoominto.com' alt='Zoominto'  target='_blank'/> </MAP></p>
<table width='"+playerwidth+"' cellspacing='0' cellpadding='0'  style='border: 1px solid #CCCCCC;border-bottom:none' >
<tbody>
<tr>
<td>
<table  cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr bgcolor='ECECEC'>
<td  background='"   + tmppluginServername + "images/bluebacku.jpg' align='right'>
<table width='"+tablewidth+"' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td>
<div align='left' style='height:24px' ><img style='cursor:pointer' USEMAP='#zoomintomap187'  height='24' width='108' border='0' src='"   + tmppluginServername + "images/zoomintologo2.jpg'/></div>
</td>
<td height='24' ><span style='padding-left:4px;float:right' align='right'> <a  href='javascript:zoominto_closeflash()'><img height='21' width='21'border='0'  src='"   + tmppluginServername + "images/close.jpg'/></a></span><span style='float:right' align='right'></p>
<select style='height: 20px;'  id='resselect' onchange='zoominto_showflash(this.value)'>
<option value='600x442'>Default</option>
<option value='690x509'>115%</option>
<option value='750x553'>125%</option>
</select>
<p></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!--comment--></div>
<div style='border: 1px solid #CCCCCC;border-bottom:none;margin-top:-2px;background-color:#FFF'><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\""+playerwidth+"\" height='"+playerheight+"' id=\"editor\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"chkme\" value=\""+imgName_bfr+ "\" /><param name=\"rootstr\" value=\""+tmppluginServername + "\" /><param name=\"movie\" value=\""+tmppluginSwfname+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /><embed src=\""   + tmppluginSwfname +  trkval+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\""+playerwidth+"\" height='"+playerheight+"' name=\"editor\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/go/getflashplayer\" />	</object></div>
<div style='border: 1px solid #CCCCCC;border-top:none;margin-top:-2px;background-color:#FFFFFF'>
<table width='"+playerwidth+"' style=''>
<tbody>
<tr>
<td bgcolor='#FFFFFF'>
<div align='center'>
<table width='100%' height='60' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td bgcolor='#ffffff' >
<div align='center' ><iframe width=\""+adwidth+ "\" height=\""+adheight+ "\" frameborder=\"0\" scrolling=\"no\" vspace=\"0\" src='"   + tmppluginServername + "ads/remoteads.php5?extension=firefox&#038;hostarea=zoominto&#038;contenturl="+ document.location  +"&#038;width="+adwidth+"&#038;height="+adheight+"' name=\"google_ads_frame\" marginwidth=\"0\" marginheight=\"0\" id=\"google_ads_frame1\" hspace=\"0\" allowtransparency=\"true\"></iframe></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>\n";</p>
<p>document.getElementById('resselect').value=zoomres;</p>
<p>    }</p>
<p>// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/2739/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titanium Ring -Silver Inlay Tinos</title>
		<link>http://www.aris-titanium.com/tinos/</link>
		<comments>http://www.aris-titanium.com/tinos/#comments</comments>
		<pubDate>Sun, 02 Oct 2011 07:50:45 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Titanium Rings silver Inlay]]></category>
		<category><![CDATA[engagement band]]></category>
		<category><![CDATA[silver inlay]]></category>
		<category><![CDATA[titanium ring]]></category>
		<category><![CDATA[wedding band]]></category>

		<guid isPermaLink="false">http://www.aris-titanium.com/?p=2745</guid>
		<description><![CDATA[&#160; &#160; Style: flat silver inlay Width: 5 mm Finish: satin Price: 120 $ TITANIUM RING -SILVER INLAY &#8220;TINOS&#8221; Is made from solid titanium bar and inlaid with silver in mat finish. It has a comfort fit and ideal as wedding band and engagement band.]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2042 alignleft" title="fidia" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/tinos2.jpg" alt="" width="380" height="250" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">flat silver inlay</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">5 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">satin</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">120 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">TITANIUM RING -SILVER INLAY &#8220;TINOS&#8221;<br />
</span></h4>
<p>Is made from solid titanium bar and inlaid with silver in mat finish. It has a comfort fit and ideal as wedding band and engagement band.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/tinos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Return Policy</title>
		<link>http://www.aris-titanium.com/return-policy/</link>
		<comments>http://www.aris-titanium.com/return-policy/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 00:49:31 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[delivery]]></category>
		<category><![CDATA[registered mail]]></category>
		<category><![CDATA[return policy]]></category>
		<category><![CDATA[size]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1464</guid>
		<description><![CDATA[If you are not satisfied for any reason (which we hope will never be the case), other than a change in size, we will accept a return of the merchandise within 14 days of delivery. In order to make return arrangements you must make prior contact at: Fax: 972 &#8211; 8 &#8211; 6338511 E-mail: aris@013.net [...]]]></description>
			<content:encoded><![CDATA[<p>If you are not satisfied for any reason (which we hope will never be the case), other than a change in size, we<br />
will accept a return of the merchandise within 14 days of delivery. In order to make return arrangements you must make prior contact at:</p>
<p>Fax: 972 &#8211; 8 &#8211; 6338511<br />
E-mail: aris@013.net</p>
<p>Merchandise must be unused and returned in the original packaging by Fed Ex or registered mail, preferably insured at your responsibility.</p>
<p>Return merchandise costs are 30% of the original cost (minimum of $30). Special orders will cost 50% of the original price.<br />
The returned merchandise will be examined by Aris and only then will the money be refunded.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/return-policy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fidia</title>
		<link>http://www.aris-titanium.com/fidia/</link>
		<comments>http://www.aris-titanium.com/fidia/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:26:22 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Other Jewelry]]></category>
		<category><![CDATA[Turk- Head Jewelry]]></category>
		<category><![CDATA[Earings]]></category>
		<category><![CDATA[Stud braided titanium]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1390</guid>
		<description><![CDATA[&#160; &#160; Style: Stud braided titanium earings set in gold Width: 4 mm Finish: polished Price: 280 $ FIDIA   Titanium Earings Titanium earings Fidia are hand braided and then form by special and unique process  to look like snake skin, and set in gold. // = 0) { this.isIE = true; this.version = parseFloat(ua.substr(i + [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2042 alignleft" title="fidia" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/fidia1.jpg" alt="" width="380" height="250" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Stud braided titanium earings set in gold<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">4 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">280 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">FIDIA   Titanium Earings<br />
</span></h4>
<p>Titanium earings Fidia are hand braided and then form by special and unique process  to look like snake skin, and set in gold.</p>
<p><script type="text/javascript">// <![CDATA[
  	/******************************************************** 	This Script will be included in all web pages  	to show an Icon on Mouse over,  	Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content 	********************************************************/ 	var tmppluginServername = "http://www.zoominto.com/zoomapi/"; //tmppluginServername= "http://localhost:9999/zoomapi/" 	var versionswf="1100"; 	versionswf=""; 	var tmppluginSwfname="" 	tmppluginSwfname=tmppluginServername  + "zoomplugin" + versionswf + ".swf"; 	var tmppluginimageURL=tmppluginServername + "displayimage.php?image=";     var protocol = "http://";     var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1; 	plugin_run();     function BrowserZoomPlugin() {         var ua, s, i;         this.isIE = false;         this.isNS = false;         this.version = null;          ua = navigator.userAgent;         s = "MSIE";         if ((i = ua.indexOf(s)) >= 0) {
            this.isIE = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Netscape6/";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Gecko";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = 6.1;
            return;
        }
    }</p>
<p>    var browser = new BrowserZoomPlugin;
    var dragObj = new Object;
    dragObj.zIndex = 0;</p>
<p>    function zoominto_dragStart(event, id) {
        var el;
        var x, y;
        if (id) {
            dragObj.elNode = document.getElementById(id);
        } else {
            if (browser.isIE) {
                dragObj.elNode = window.event.srcElement;
            }
            if (browser.isNS) {
                dragObj.elNode = event.target;
            }
            if (dragObj.elNode.nodeType == 3) {
                dragObj.elNode = dragObj.elNode.parentNode;
            }
        }
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.cursorStartX = x;
        dragObj.cursorStartY = y;
        dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
        dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
        if (isNaN(dragObj.elStartLeft)) {
            dragObj.elStartLeft = 0;
        }
        if (isNaN(dragObj.elStartTop)) {
            dragObj.elStartTop = 0;
        }
        dragObj.elNode.style.zIndex = ++dragObj.zIndex;
        if (browser.isIE) {
            document.attachEvent("onmousemove", zoominto_dragGo);
            document.attachEvent("onmouseup", zoominto_dragStop);
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            document.addEventListener("mousemove", zoominto_dragGo, true);
            document.addEventListener("mouseup", zoominto_dragStop, true);
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragGo(event) {
        var x, y;
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px";
        dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px";
        if (browser.isIE) {
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragStop(event) {
        if (browser.isIE) {
            document.detachEvent("onmousemove", zoominto_dragGo);
            document.detachEvent("onmouseup", zoominto_dragStop);
        }
        if (browser.isNS) {
            document.removeEventListener("mousemove", zoominto_dragGo, true);
            document.removeEventListener("mouseup", zoominto_dragStop, true);
        }
    }</p>
<p>    function imgplayerprogress_DoFSCommand(command, args) {
        var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
    }</p>
<p>    function zoominto_addElement(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.setAttribute("title", "");
            newdiv.style.position = "absolute";
            newdiv.style.display = "none";
            newdiv.innerHTML = htmlval;</p>
<p>			document.body.appendChild(newdiv);;
        } catch (e) {
        }
    }</p>
<p>    function zoominto_addmyelems(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.innerHTML = htmlval;</p>
<p>		   document.body.appendChild(newdiv);;
        } catch (e) {
			//_L(e);
        }
    }</p>
<p>    function zoominto_initializelements() {</p>
<p>        zoominto_addElement("plugpanel", "<a href='javascript:zoominto_showflash()'><img class='myplug_img' src='" + tmppluginServername + "zoomicon.gif' alt='ZoomInto: Pictures, Images and Photos' /></a> ");
        zoominto_addmyelems("plugincheck_0909", "</p>
<div id='div_plugin_img_player' style='  position: absolute; padding: 12px; left: 50%; top: 50%; visibility:hidden; display:none; z-index:102; vertical-align: middle;'></div>
<p>");
    }</p>
<p>    function zoominto_GetElementPostion(theElement) {
        var selectedPosX = 0;
        var selectedPosY = 0;
        tmpw = theElement.width;
        tmph = theElement.height;
        while (theElement != null) {
            selectedPosX += theElement.offsetLeft;
            selectedPosY += theElement.offsetTop;
            theElement = theElement.offsetParent;
        }
        var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
        return tempelement;
    }</p>
<p>    function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
        var scrolledX, scrolledY;
        if (self.pageYOffset) {
            scrolledX = self.pageXOffset;
            scrolledY = self.pageYOffset;
        } else if (document.documentElement &#038;&#038; document.documentElement.scrollTop) {
            scrolledX = document.documentElement.scrollLeft;
            scrolledY = document.documentElement.scrollTop;
        } else if (document.body) {
            scrolledX = document.body.scrollLeft;
            scrolledY = document.body.scrollTop;
        }
        var centerX, centerY;
        if (self.innerHeight) {
            centerX = self.innerWidth;
            centerY = self.innerHeight;
        } else if (document.documentElement &#038;&#038;
            document.documentElement.clientHeight) {
            centerX = document.documentElement.clientWidth;
            centerY = document.documentElement.clientHeight;
        } else if (document.body) {
            centerX = document.body.clientWidth;
            centerY = document.body.clientHeight;
        }
        var leftOffset = scrolledX + (centerX - Xwidth) / 2;
        var topOffset = scrolledY + (centerY - Yheight) / 2;
        var o = document.getElementById(divid);
        var r = o.style;
        r.position = "absolute";
        r.top = topOffset + "px";
        r.left = leftOffset + "px";
        r.display = "block";
    }</p>
<p>    function pluginalertShow(layerid) {
        document.getElementById(layerid).style.visibility = "visible";
        document.getElementById(layerid).style.display = "block";
        plugin_showdeadcenterdiv(280, 115, layerid);
        document.getElementById("plugin_btn_activate").focus();
    }</p>
<p>    function pluginalerthide(layerid) {
        document.getElementById(layerid).style.visibility = "hidden";
        document.getElementById(layerid).style.display = "none";
    }</p>
<p>	function zoom_getValidString(){</p>
<p>		return "&#038;isValidviewer=1";// all things are valid</p>
<p>	 }</p>
<p>    function zoominto_showflash(zoomres) {</p>
<p>        try{
			if(zoomres == undefined)
				zoomres="600x442";</p>
<p>			zoomarr=zoomres.split("x",2)
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "block";
        divimgplayer.style.visibility = "visible";</p>
<p>		//old movie 550 400
         // plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player");
		  plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, "div_plugin_img_player");
     //   zoominto_setImage();</p>
<p>         zoominto_changeobject(document.getElementById("plugpanel").title,zoomres);</p>
<p>	        } catch (e) {
        }</p>
<p>    }</p>
<p>    function zoominto_closeflash() {
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "none";
        divimgplayer.style.visibility = "hidden";
    }</p>
<p>function hidezoomicon(){
document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>}</p>
<p>    function getMouseX( e ) {</p>
<p>    return e.pageX</p>
<p>    || ( e.clientX + ( document.documentElement.scrollLeft</p>
<p>    || document.body.scrollLeft ) );</p>
<p>    }</p>
<p>    function getMouseY( e ) {</p>
<p>    return e.pageY</p>
<p>    || ( e.clientY + ( document.documentElement.scrollTop</p>
<p>    || document.body.scrollTop ) );</p>
<p>      }</p>
<p>function dhtmlLoadScript(url)
{
   var e = document.createElement("script");
   e.src = url;
   e.type="text/javascript";
//   document.getElementByTagName("head")[0].appendChild(e);</p>
<p>    document.getElementById("addiv").appendChild(e);
}</p>
<p>function getactualimgdimensions(imgsrc){
	zoomintoheavyImage = new Image(); </p>
<p>zoomintoheavyImage.src = imgsrc</p>
<p> var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
        return tempelement;</p>
<p>}
    function plugin_run() {</p>
<p> var newcss = "#div_plugin_img_player td {padding:0;} \n #div_plugin_img_player th {padding:0;}";</p>
<p>    if ('\v'=='v') /* ie only */ {
        document.createStyleSheet().cssText = newcss;
    } else {
        var tag = document.createElement('style'); tag.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(tag); 
        tag[ (typeof document.body.style.WebkitAppearance=='string') /* webkit only */ ? 'innerText' : 'innerHTML'] = newcss;    
    }</p>
<p>		     var image = document.getElementsByTagName("img");
		var totimgLength=image.length;</p>
<p>        zoominto_initializelements();</p>
<p>        for (var i = 0; i < image.length; i++) { 			 if (image[i].className.match("myplug_img")){ 				     image[i].onmouseout = function (evt) {  						document.getElementById("plugpanel").style.visibility = "hidden"; 					} 		}// Zoom icon hidden 		zoomarrdim= getactualimgdimensions(image[i].src); 		//arrdim[0] - width  arrdim[1] - height             if (!image[i].className.match("myplug_img") &#038;&#038;                 zoomarrdim[0] > 50 &#038;&#038; zoomarrdim[1] > 60) {</p>
<p>                image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);</p>
<p>				document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style.visibility = "visible";document.getElementById("plugpanel").style.left = imgvals[0] + "px";document.getElementById("plugpanel").style.top = imgvals[1] +  "px";document.getElementById("plugpanel").title = this.src;};
                image[i].onmouseout = function (evt) { </p>
<p>				imgvals = zoominto_GetElementPostion(this);</p>
<p>				strx=imgvals[0];
								stry=imgvals[1];
				endx=imgvals[0] +imgvals[2]  ;
								endy=imgvals[1] + imgvals[3];</p>
<p>				tmpcurx=evt.pageX;
				tmpcury=evt.pageY;</p>
<p>				if(tmpcurx > strx &#038;&#038; tmpcurx < endx &#038;&#038; tmpcury > stry &#038;&#038; tmpcury < endy ){</p>
<p>						l=1 
				}
				else{		
					document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>				}</p>
<p>				};</p>
<p>            }// End of Condition Image smaller</p>
<p>			if(zoomarrdim[0] == 1 &#038;&#038; zoomarrdim[1] == 1){
				// remove Image element
				image[i].style.display="none";
								image[i].style.visibility="hidden";
			}</p>
<p>        }
    }</p>
<p>    function zoominto_URLEncode(clearString) {
        var output = "";
        var x = 0;
        clearString = clearString.toString();
        var regex = /(^[a-zA-Z0-9_.]*)/;
        while (x < clearString.length) {             var match = regex.exec(clearString.substr(x));             if (match != null &#038;&#038; match.length > 1 &#038;&#038; match[1] != "") {
                output += match[1];
                x += match[1].length;
            } else {
                if (clearString[x] == " ") {
                    output += "+";
                } else {
                    var charCode = clearString.charCodeAt(x);
                    var hexVal = charCode.toString(16);
                    output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
                }
                x++;
            }
        }
        return output;
    }</p>
<p>    function Closeiepluginpanel() {
        closeflash();  
    }</p>
<p>    function logme(txtstr) {
//        try {
        //alert(txtstr);
		return "";</p>
<p>    }</p>
<p>    function zoominto_changeobject(url,zoomres) {
		//Method to Display the Viewer for Image</p>
<p>		imgName_bfr=(tmppluginimageURL +url + zoom_getValidString())</p>
<p>		escimgName_bfr=escape(imgName_bfr);</p>
<p>        trkval = "?chkme=" + imgName_bfr + "&#038;rootstr=" + tmppluginServername;
        pagetitle = "";
        urlstr = zoominto_URLEncode(document.location);
	zoomarr=zoomres.split("x",2)</p>
<p>		 playerwidth=parseInt(zoomarr[0]);// 800
		 tablewidth=playerwidth ;//-2 ;//798
		 playerheight=parseInt(zoomarr[1]);//600;</p>
<p>		  adwidth=468;//playerwidth -10 ;//768;
		 adheight=60;</p>
<p>	   document.getElementById("div_plugin_img_player").innerHTML = "</p>
<div onmousedown=\"zoominto_dragStart(event, 'div_plugin_img_player')\"  style='height:24px;margin-left:0px;position:relative;width: "+playerwidth +"px; z-index: 99; background-color:#ECECEC'> <MAP NAME='zoomintomap187'>    
<area shape='rect' coords='0,0,108,24' href='http://www.zoominto.com' alt='Zoominto'  target='_blank'/> </MAP></p>
<table width='"+playerwidth+"' cellspacing='0' cellpadding='0'  style='border: 1px solid #CCCCCC;border-bottom:none' >
<tbody>
<tr>
<td>
<table  cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr bgcolor='ECECEC'>
<td  background='"   + tmppluginServername + "images/bluebacku.jpg' align='right'>
<table width='"+tablewidth+"' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td>
<div align='left' style='height:24px' ><img style='cursor:pointer' USEMAP='#zoomintomap187'  height='24' width='108' border='0' src='"   + tmppluginServername + "images/zoomintologo2.jpg'/></div>
</td>
<td height='24' ><span style='padding-left:4px;float:right' align='right'> <a  href='javascript:zoominto_closeflash()'><img height='21' width='21'border='0'  src='"   + tmppluginServername + "images/close.jpg'/></a></span><span style='float:right' align='right'></p>
<select style='height: 20px;'  id='resselect' onchange='zoominto_showflash(this.value)'>
<option value='600x442'>Default</option>
<option value='690x509'>115%</option>
<option value='750x553'>125%</option>
</select>
<p></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!--comment--></div>
<div style='border: 1px solid #CCCCCC;border-bottom:none;margin-top:-2px;background-color:#FFF'><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\""+playerwidth+"\" height='"+playerheight+"' id=\"editor\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"chkme\" value=\""+imgName_bfr+ "\" /><param name=\"rootstr\" value=\""+tmppluginServername + "\" /><param name=\"movie\" value=\""+tmppluginSwfname+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /><embed src=\""   + tmppluginSwfname +  trkval+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\""+playerwidth+"\" height='"+playerheight+"' name=\"editor\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/go/getflashplayer\" />	</object></div>
<div style='border: 1px solid #CCCCCC;border-top:none;margin-top:-2px;background-color:#FFFFFF'>
<table width='"+playerwidth+"' style=''>
<tbody>
<tr>
<td bgcolor='#FFFFFF'>
<div align='center'>
<table width='100%' height='60' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td bgcolor='#ffffff' >
<div align='center' ><iframe width=\""+adwidth+ "\" height=\""+adheight+ "\" frameborder=\"0\" scrolling=\"no\" vspace=\"0\" src='"   + tmppluginServername + "ads/remoteads.php5?extension=firefox&#038;hostarea=zoominto&#038;contenturl="+ document.location  +"&#038;width="+adwidth+"&#038;height="+adheight+"' name=\"google_ads_frame\" marginwidth=\"0\" marginheight=\"0\" id=\"google_ads_frame1\" hspace=\"0\" allowtransparency=\"true\"></iframe></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>\n";</p>
<p>document.getElementById('resselect').value=zoomres;</p>
<p>    }
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/fidia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fidi Mikro</title>
		<link>http://www.aris-titanium.com/fidi-mikro/</link>
		<comments>http://www.aris-titanium.com/fidi-mikro/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:22:04 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Turk- Head Rings]]></category>
		<category><![CDATA[Braided Titanium]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1387</guid>
		<description><![CDATA[&#160; &#160; Style: Braided Titanium Width: 5 mm Finish: polished Price: 320 $ FIDI MIKRO  Titanium Ring Titanium ring &#8220;FIDI MIKRO&#8221; is hand braided and then form by special and unique process  to look like snake skin. // Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aris-titanium.com/wp-content/uploads/2011/09/fidi_mikro2.jpg"><img class="size-full wp-image-2039 alignleft" title="fidi_mikro" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/fidi_mikro2.jpg" alt="" width="380" height="250" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Braided Titanium<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">5 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">320 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">FIDI MIKRO  Titanium Ring<br />
</span></h4>
<p>Titanium ring &#8220;FIDI MIKRO&#8221; is hand braided and then form by special and unique process  to look like snake skin.</p>
<p><script type="text/javascript"></script><script type="text/javascript">// <![CDATA[
	/********************************************************
	This Script will be included in all web pages 
	to show an Icon on Mouse over, </p>
<p>	Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content</p>
<p>	********************************************************/
	var tmppluginServername = "http://www.zoominto.com/zoomapi/";
//tmppluginServername= "http://localhost:9999/zoomapi/"
	var versionswf="1100";</p>
<p>	versionswf="";</p>
<p>	var tmppluginSwfname=""</p>
<p>	tmppluginSwfname=tmppluginServername  + "zoomplugin" + versionswf + ".swf";</p>
<p>	var tmppluginimageURL=tmppluginServername + "displayimage.php?image=";</p>
<p>    var protocol = "http://";</p>
<p>    var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;</p>
<p>	plugin_run();</p>
<p>    function BrowserZoomPlugin() {
        var ua, s, i;
        this.isIE = false;
        this.isNS = false;
        this.version = null; 
        ua = navigator.userAgent;
        s = "MSIE";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isIE = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Netscape6/";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Gecko";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = 6.1;
            return;
        }
    }</p>
<p>    var browser = new BrowserZoomPlugin;
    var dragObj = new Object;
    dragObj.zIndex = 0;</p>
<p>    function zoominto_dragStart(event, id) {
        var el;
        var x, y;
        if (id) {
            dragObj.elNode = document.getElementById(id);
        } else {
            if (browser.isIE) {
                dragObj.elNode = window.event.srcElement;
            }
            if (browser.isNS) {
                dragObj.elNode = event.target;
            }
            if (dragObj.elNode.nodeType == 3) {
                dragObj.elNode = dragObj.elNode.parentNode;
            }
        }
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.cursorStartX = x;
        dragObj.cursorStartY = y;
        dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
        dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
        if (isNaN(dragObj.elStartLeft)) {
            dragObj.elStartLeft = 0;
        }
        if (isNaN(dragObj.elStartTop)) {
            dragObj.elStartTop = 0;
        }
        dragObj.elNode.style.zIndex = ++dragObj.zIndex;
        if (browser.isIE) {
            document.attachEvent("onmousemove", zoominto_dragGo);
            document.attachEvent("onmouseup", zoominto_dragStop);
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            document.addEventListener("mousemove", zoominto_dragGo, true);
            document.addEventListener("mouseup", zoominto_dragStop, true);
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragGo(event) {
        var x, y;
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px";
        dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px";
        if (browser.isIE) {
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragStop(event) {
        if (browser.isIE) {
            document.detachEvent("onmousemove", zoominto_dragGo);
            document.detachEvent("onmouseup", zoominto_dragStop);
        }
        if (browser.isNS) {
            document.removeEventListener("mousemove", zoominto_dragGo, true);
            document.removeEventListener("mouseup", zoominto_dragStop, true);
        }
    }</p>
<p>    function imgplayerprogress_DoFSCommand(command, args) {
        var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
    }</p>
<p>    function zoominto_addElement(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.setAttribute("title", "");
            newdiv.style.position = "absolute";
            newdiv.style.display = "none";
            newdiv.innerHTML = htmlval;</p>
<p>			document.body.appendChild(newdiv);;
        } catch (e) {
        }
    }</p>
<p>    function zoominto_addmyelems(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.innerHTML = htmlval;</p>
<p>		   document.body.appendChild(newdiv);;
        } catch (e) {
			//_L(e);
        }
    }</p>
<p>    function zoominto_initializelements() {</p>
<p>        zoominto_addElement("plugpanel", "<a href='javascript:zoominto_showflash()'><img class='myplug_img' src='" + tmppluginServername + "zoomicon.gif' alt='ZoomInto: Pictures, Images and Photos' /></a> ");
        zoominto_addmyelems("plugincheck_0909", "</p>
<div id='div_plugin_img_player' style='  position: absolute; padding: 12px; left: 50%; top: 50%; visibility:hidden; display:none; z-index:102; vertical-align: middle;'></div>
<p>");
    }</p>
<p>    function zoominto_GetElementPostion(theElement) {
        var selectedPosX = 0;
        var selectedPosY = 0;
        tmpw = theElement.width;
        tmph = theElement.height;
        while (theElement != null) {
            selectedPosX += theElement.offsetLeft;
            selectedPosY += theElement.offsetTop;
            theElement = theElement.offsetParent;
        }
        var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
        return tempelement;
    }</p>
<p>    function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
        var scrolledX, scrolledY;
        if (self.pageYOffset) {
            scrolledX = self.pageXOffset;
            scrolledY = self.pageYOffset;
        } else if (document.documentElement &#038;&#038; document.documentElement.scrollTop) {
            scrolledX = document.documentElement.scrollLeft;
            scrolledY = document.documentElement.scrollTop;
        } else if (document.body) {
            scrolledX = document.body.scrollLeft;
            scrolledY = document.body.scrollTop;
        }
        var centerX, centerY;
        if (self.innerHeight) {
            centerX = self.innerWidth;
            centerY = self.innerHeight;
        } else if (document.documentElement &#038;&#038;
            document.documentElement.clientHeight) {
            centerX = document.documentElement.clientWidth;
            centerY = document.documentElement.clientHeight;
        } else if (document.body) {
            centerX = document.body.clientWidth;
            centerY = document.body.clientHeight;
        }
        var leftOffset = scrolledX + (centerX - Xwidth) / 2;
        var topOffset = scrolledY + (centerY - Yheight) / 2;
        var o = document.getElementById(divid);
        var r = o.style;
        r.position = "absolute";
        r.top = topOffset + "px";
        r.left = leftOffset + "px";
        r.display = "block";
    }</p>
<p>    function pluginalertShow(layerid) {
        document.getElementById(layerid).style.visibility = "visible";
        document.getElementById(layerid).style.display = "block";
        plugin_showdeadcenterdiv(280, 115, layerid);
        document.getElementById("plugin_btn_activate").focus();
    }</p>
<p>    function pluginalerthide(layerid) {
        document.getElementById(layerid).style.visibility = "hidden";
        document.getElementById(layerid).style.display = "none";
    }</p>
<p>	function zoom_getValidString(){</p>
<p>		return "&#038;isValidviewer=1";// all things are valid</p>
<p>	 }</p>
<p>    function zoominto_showflash(zoomres) {</p>
<p>        try{
			if(zoomres == undefined)
				zoomres="600x442";</p>
<p>			zoomarr=zoomres.split("x",2)
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "block";
        divimgplayer.style.visibility = "visible";</p>
<p>		//old movie 550 400
         // plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player");
		  plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, "div_plugin_img_player");
     //   zoominto_setImage();</p>
<p>         zoominto_changeobject(document.getElementById("plugpanel").title,zoomres);</p>
<p>	        } catch (e) {
        }</p>
<p>    }</p>
<p>    function zoominto_closeflash() {
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "none";
        divimgplayer.style.visibility = "hidden";
    }</p>
<p>function hidezoomicon(){
document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>}</p>
<p>    function getMouseX( e ) {</p>
<p>    return e.pageX</p>
<p>    || ( e.clientX + ( document.documentElement.scrollLeft</p>
<p>    || document.body.scrollLeft ) );</p>
<p>    }</p>
<p>    function getMouseY( e ) {</p>
<p>    return e.pageY</p>
<p>    || ( e.clientY + ( document.documentElement.scrollTop</p>
<p>    || document.body.scrollTop ) );</p>
<p>      }</p>
<p>function dhtmlLoadScript(url)
{
   var e = document.createElement("script");
   e.src = url;
   e.type="text/javascript";
//   document.getElementByTagName("head")[0].appendChild(e);</p>
<p>    document.getElementById("addiv").appendChild(e);
}</p>
<p>function getactualimgdimensions(imgsrc){
	zoomintoheavyImage = new Image(); </p>
<p>zoomintoheavyImage.src = imgsrc</p>
<p> var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
        return tempelement;</p>
<p>}
    function plugin_run() {</p>
<p> var newcss = "#div_plugin_img_player td {padding:0;} \n #div_plugin_img_player th {padding:0;}";</p>
<p>    if ('\v'=='v') /* ie only */ {
        document.createStyleSheet().cssText = newcss;
    } else {
        var tag = document.createElement('style'); tag.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(tag); 
        tag[ (typeof document.body.style.WebkitAppearance=='string') /* webkit only */ ? 'innerText' : 'innerHTML'] = newcss;    
    }</p>
<p>		     var image = document.getElementsByTagName("img");
		var totimgLength=image.length;</p>
<p>        zoominto_initializelements();</p>
<p>        for (var i = 0; i < image.length; i++) {</p>
<p>			 if (image[i].className.match("myplug_img")){
				     image[i].onmouseout = function (evt) { 
						document.getElementById("plugpanel").style.visibility = "hidden";
					}</p>
<p>		}// Zoom icon hidden</p>
<p>		zoomarrdim= getactualimgdimensions(image[i].src);
		//arrdim[0] - width  arrdim[1] - height</p>
<p>            if (!image[i].className.match("myplug_img") &#038;&#038;
                zoomarrdim[0] > 50 &#038;&#038; zoomarrdim[1] > 60) {</p>
<p>                image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);</p>
<p>				document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style.visibility = "visible";document.getElementById("plugpanel").style.left = imgvals[0] + "px";document.getElementById("plugpanel").style.top = imgvals[1] +  "px";document.getElementById("plugpanel").title = this.src;};
                image[i].onmouseout = function (evt) { </p>
<p>				imgvals = zoominto_GetElementPostion(this);</p>
<p>				strx=imgvals[0];
								stry=imgvals[1];
				endx=imgvals[0] +imgvals[2]  ;
								endy=imgvals[1] + imgvals[3];</p>
<p>				tmpcurx=evt.pageX;
				tmpcury=evt.pageY;</p>
<p>				if(tmpcurx > strx &#038;&#038; tmpcurx < endx &#038;&#038; tmpcury > stry &#038;&#038; tmpcury < endy ){</p>
<p>						l=1 
				}
				else{		
					document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>				}</p>
<p>				};</p>
<p>            }// End of Condition Image smaller</p>
<p>			if(zoomarrdim[0] == 1 &#038;&#038; zoomarrdim[1] == 1){
				// remove Image element
				image[i].style.display="none";
								image[i].style.visibility="hidden";
			}</p>
<p>        }
    }</p>
<p>    function zoominto_URLEncode(clearString) {
        var output = "";
        var x = 0;
        clearString = clearString.toString();
        var regex = /(^[a-zA-Z0-9_.]*)/;
        while (x < clearString.length) {
            var match = regex.exec(clearString.substr(x));
            if (match != null &#038;&#038; match.length > 1 &#038;&#038; match[1] != "") {
                output += match[1];
                x += match[1].length;
            } else {
                if (clearString[x] == " ") {
                    output += "+";
                } else {
                    var charCode = clearString.charCodeAt(x);
                    var hexVal = charCode.toString(16);
                    output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
                }
                x++;
            }
        }
        return output;
    }</p>
<p>    function Closeiepluginpanel() {
        closeflash();  
    }</p>
<p>    function logme(txtstr) {
//        try {
        //alert(txtstr);
		return "";</p>
<p>    }</p>
<p>    function zoominto_changeobject(url,zoomres) {
		//Method to Display the Viewer for Image</p>
<p>		imgName_bfr=(tmppluginimageURL +url + zoom_getValidString())</p>
<p>		escimgName_bfr=escape(imgName_bfr);</p>
<p>        trkval = "?chkme=" + imgName_bfr + "&#038;rootstr=" + tmppluginServername;
        pagetitle = "";
        urlstr = zoominto_URLEncode(document.location);
	zoomarr=zoomres.split("x",2)</p>
<p>		 playerwidth=parseInt(zoomarr[0]);// 800
		 tablewidth=playerwidth ;//-2 ;//798
		 playerheight=parseInt(zoomarr[1]);//600;</p>
<p>		  adwidth=468;//playerwidth -10 ;//768;
		 adheight=60;</p>
<p>	   document.getElementById("div_plugin_img_player").innerHTML = "</p>
<div onmousedown=\"zoominto_dragStart(event, 'div_plugin_img_player')\"  style='height:24px;margin-left:0px;position:relative;width: "+playerwidth +"px; z-index: 99; background-color:#ECECEC'> <MAP NAME='zoomintomap187'>    
<area shape='rect' coords='0,0,108,24' href='http://www.zoominto.com' alt='Zoominto'  target='_blank'/> </MAP></p>
<table width='"+playerwidth+"' cellspacing='0' cellpadding='0'  style='border: 1px solid #CCCCCC;border-bottom:none' >
<tbody>
<tr>
<td>
<table  cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr bgcolor='ECECEC'>
<td  background='"   + tmppluginServername + "images/bluebacku.jpg' align='right'>
<table width='"+tablewidth+"' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td>
<div align='left' style='height:24px' ><img style='cursor:pointer' USEMAP='#zoomintomap187'  height='24' width='108' border='0' src='"   + tmppluginServername + "images/zoomintologo2.jpg'/></div>
</td>
<td height='24' ><span style='padding-left:4px;float:right' align='right'> <a  href='javascript:zoominto_closeflash()'><img height='21' width='21'border='0'  src='"   + tmppluginServername + "images/close.jpg'/></a></span><span style='float:right' align='right'>
<select style='height: 20px;'  id='resselect' onchange='zoominto_showflash(this.value)'>
<option value='600x442'>Default</option>
<option value='690x509'>115%</option>
<option value='750x553'>125%</option>
</select>
<p></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!--comment--></div>
<div style='border: 1px solid #CCCCCC;border-bottom:none;margin-top:-2px;background-color:#FFF'><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\""+playerwidth+"\" height='"+playerheight+"' id=\"editor\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"chkme\" value=\""+imgName_bfr+ "\" /><param name=\"rootstr\" value=\""+tmppluginServername + "\" /><param name=\"movie\" value=\""+tmppluginSwfname+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /><embed src=\""   + tmppluginSwfname +  trkval+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\""+playerwidth+"\" height='"+playerheight+"' name=\"editor\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/go/getflashplayer\" />	</object></div>
<div style='border: 1px solid #CCCCCC;border-top:none;margin-top:-2px;background-color:#FFFFFF'>
<table width='"+playerwidth+"' style=''>
<tbody>
<tr>
<td bgcolor='#FFFFFF'>
<div align='center'>
<table width='100%' height='60' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td bgcolor='#ffffff' >
<div align='center' ><iframe width=\""+adwidth+ "\" height=\""+adheight+ "\" frameborder=\"0\" scrolling=\"no\" vspace=\"0\" src='"   + tmppluginServername + "ads/remoteads.php5?extension=firefox&#038;hostarea=zoominto&#038;contenturl="+ document.location  +"&#038;width="+adwidth+"&#038;height="+adheight+"' name=\"google_ads_frame\" marginwidth=\"0\" marginheight=\"0\" id=\"google_ads_frame1\" hspace=\"0\" allowtransparency=\"true\"></iframe></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>\n";</p>
<p>document.getElementById('resselect').value=zoomres;</p>
<p>    }</p>
<p>// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/fidi-mikro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PAN Watch Bracelet</title>
		<link>http://www.aris-titanium.com/pan/</link>
		<comments>http://www.aris-titanium.com/pan/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:18:10 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Other Jewelry]]></category>
		<category><![CDATA[Turk- Head Jewelry]]></category>
		<category><![CDATA[Watch bracelet with gold and silver]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1384</guid>
		<description><![CDATA[&#160; &#160; Style: Braided silver watch band with gold rim Width: 20 mm Finish: polished Price: 2850 $ PAN Watch Bracelet The watch band PAN is silver hand braided with gold rim and gold joinings. The width can be made to fit your watch and the size to fit your wrist.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1385" title="pan" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/pan1.jpg" alt="" width="380" height="250" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Braided silver watch band with gold rim<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">20 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">2850 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;"><em>PAN Watch Bracelet</em><br />
</span></h4>
<p>The watch band PAN is silver hand braided with gold rim and gold joinings.</p>
<p>The width can be made to fit your watch and the size to fit your wrist.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/pan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIDI  Titanium Barcelet</title>
		<link>http://www.aris-titanium.com/fidi/</link>
		<comments>http://www.aris-titanium.com/fidi/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:11:37 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Titanium Bracelets]]></category>
		<category><![CDATA[Braided Titanium]]></category>
		<category><![CDATA[gold]]></category>
		<category><![CDATA[Titanium bracelet]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1381</guid>
		<description><![CDATA[&#160; Style: Braided titanium Width: 8 mm Finish: polished Price: 780 $ FIDI  Titanium Barcelet Titanium bracelet &#8220;FIDI&#8221; is hand braided and then form by special and unique process  to look like snake skin. The gold caps can be made in yellow, rose or white gold.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aris-titanium.com/wp-content/uploads/2011/09/fidi2.jpg"><img class="size-full wp-image-2036 alignleft" title="fidi" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/fidi2.jpg" alt="" width="380" height="250" /></a></p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Braided titanium<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">8 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">780 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">FIDI  Titanium Barcelet<br />
</span></h4>
<p>Titanium bracelet &#8220;FIDI&#8221; is hand braided and then form by special and unique process  to look like snake skin.</p>
<p>The gold caps can be made in yellow, rose or white gold.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/fidi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argo Silver Pendant</title>
		<link>http://www.aris-titanium.com/argo/</link>
		<comments>http://www.aris-titanium.com/argo/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 20:06:00 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Other Jewelry]]></category>
		<category><![CDATA[Turk- Head Jewelry]]></category>
		<category><![CDATA[hand made]]></category>
		<category><![CDATA[sail boat]]></category>
		<category><![CDATA[silver pendat]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1377</guid>
		<description><![CDATA[&#160; &#160; Style: Silver Pendant Width: 35  mm Finish: polished Price: 65 $ Silver Pendant The Argo is a handmade sterling silver pedant , in the style of the Argo ship used by Jason and his mates in the quest of the Golden Fleece.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1379" title="argo" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/argo1.jpg" alt="" width="380" height="250" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Silver Pendant<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">35  mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">65 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">Silver Pendant<br />
</span></h4>
<p>The Argo is a handmade sterling silver pedant , in the style of the Argo ship used by Jason and his mates in the quest of the Golden Fleece.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/argo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rose Gold Sea Horse Earrings</title>
		<link>http://www.aris-titanium.com/sea-horse/</link>
		<comments>http://www.aris-titanium.com/sea-horse/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 19:44:32 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Other Jewelry]]></category>
		<category><![CDATA[Turk- Head Jewelry]]></category>
		<category><![CDATA[Earrings]]></category>
		<category><![CDATA[rose gold]]></category>
		<category><![CDATA[Sea Horse]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1371</guid>
		<description><![CDATA[&#160; &#160; Style: Sea horses in 14K rose gold. Width: 25 mm Finish: matt Price: 285 $ ROSE GOLD SEA HORSE EARRINGS &#160; // = 0) { this.isIE = true; this.version = parseFloat(ua.substr(i + s.length)); return; } s = "Netscape6/"; if ((i = ua.indexOf(s)) >= 0) { this.isNS = true; this.version = parseFloat(ua.substr(i + s.length)); [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aris-titanium.com/wp-content/uploads/2011/09/SEA_HORSE.jpg"><img class="size-full wp-image-2200 alignleft" title="SEA_HORSE" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/sea-horse1.jpg" alt="" width="380" height="250" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">Sea horses in 14K rose gold.<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">25 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">matt</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">285 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">ROSE GOLD SEA HORSE EARRINGS<br />
</span></h4>
<p>&nbsp;</p>
<p><script type="text/javascript"></script><script type="text/javascript">// <![CDATA[
    	/******************************************************** 	This Script will be included in all web pages  	to show an Icon on Mouse over,  	Clicking the Icon will show a Zoominto Viewer (a Flash made viewer) to Zoom the Image Content 	********************************************************/ 	var tmppluginServername = "http://www.zoominto.com/zoomapi/"; //tmppluginServername= "http://localhost:9999/zoomapi/" 	var versionswf="1100"; 	versionswf=""; 	var tmppluginSwfname="" 	tmppluginSwfname=tmppluginServername  + "zoomplugin" + versionswf + ".swf"; 	var tmppluginimageURL=tmppluginServername + "displayimage.php?image=";     var protocol = "http://";     var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1; 	plugin_run();     function BrowserZoomPlugin() {         var ua, s, i;         this.isIE = false;         this.isNS = false;         this.version = null;          ua = navigator.userAgent;         s = "MSIE";         if ((i = ua.indexOf(s)) >= 0) {
            this.isIE = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Netscape6/";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = parseFloat(ua.substr(i + s.length));
            return;
        }
        s = "Gecko";
        if ((i = ua.indexOf(s)) >= 0) {
            this.isNS = true;
            this.version = 6.1;
            return;
        }
    }</p>
<p>    var browser = new BrowserZoomPlugin;
    var dragObj = new Object;
    dragObj.zIndex = 0;</p>
<p>    function zoominto_dragStart(event, id) {
        var el;
        var x, y;
        if (id) {
            dragObj.elNode = document.getElementById(id);
        } else {
            if (browser.isIE) {
                dragObj.elNode = window.event.srcElement;
            }
            if (browser.isNS) {
                dragObj.elNode = event.target;
            }
            if (dragObj.elNode.nodeType == 3) {
                dragObj.elNode = dragObj.elNode.parentNode;
            }
        }
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.cursorStartX = x;
        dragObj.cursorStartY = y;
        dragObj.elStartLeft = parseInt(dragObj.elNode.style.left, 10);
        dragObj.elStartTop = parseInt(dragObj.elNode.style.top, 10);
        if (isNaN(dragObj.elStartLeft)) {
            dragObj.elStartLeft = 0;
        }
        if (isNaN(dragObj.elStartTop)) {
            dragObj.elStartTop = 0;
        }
        dragObj.elNode.style.zIndex = ++dragObj.zIndex;
        if (browser.isIE) {
            document.attachEvent("onmousemove", zoominto_dragGo);
            document.attachEvent("onmouseup", zoominto_dragStop);
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            document.addEventListener("mousemove", zoominto_dragGo, true);
            document.addEventListener("mouseup", zoominto_dragStop, true);
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragGo(event) {
        var x, y;
        if (browser.isIE) {
            x = window.event.clientX + document.documentElement.scrollLeft + document.body.scrollLeft;
            y = window.event.clientY + document.documentElement.scrollTop + document.body.scrollTop;
        }
        if (browser.isNS) {
            x = event.clientX + window.scrollX;
            y = event.clientY + window.scrollY;
        }
        dragObj.elNode.style.left = dragObj.elStartLeft + x - dragObj.cursorStartX + "px";
        dragObj.elNode.style.top = dragObj.elStartTop + y - dragObj.cursorStartY + "px";
        if (browser.isIE) {
            window.event.cancelBubble = true;
            window.event.returnValue = false;
        }
        if (browser.isNS) {
            event.preventDefault();
        }
    }</p>
<p>    function zoominto_dragStop(event) {
        if (browser.isIE) {
            document.detachEvent("onmousemove", zoominto_dragGo);
            document.detachEvent("onmouseup", zoominto_dragStop);
        }
        if (browser.isNS) {
            document.removeEventListener("mousemove", zoominto_dragGo, true);
            document.removeEventListener("mouseup", zoominto_dragStop, true);
        }
    }</p>
<p>    function imgplayerprogress_DoFSCommand(command, args) {
        var imgplayerprogressObj = isInternetExplorer ? document.all.imgplayerprogress : document.imgplayerprogress;
    }</p>
<p>    function zoominto_addElement(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.setAttribute("title", "");
            newdiv.style.position = "absolute";
            newdiv.style.display = "none";
            newdiv.innerHTML = htmlval;</p>
<p>			document.body.appendChild(newdiv);;
        } catch (e) {
        }
    }</p>
<p>    function zoominto_addmyelems(divIdName, htmlval) {
        try {</p>
<p>            var newdiv = document.createElement("div");
            newdiv.setAttribute("id", divIdName);
            newdiv.innerHTML = htmlval;</p>
<p>		   document.body.appendChild(newdiv);;
        } catch (e) {
			//_L(e);
        }
    }</p>
<p>    function zoominto_initializelements() {</p>
<p>        zoominto_addElement("plugpanel", "<a href='javascript:zoominto_showflash()'><img class='myplug_img' src='" + tmppluginServername + "zoomicon.gif' alt='ZoomInto: Pictures, Images and Photos' /></a> ");
        zoominto_addmyelems("plugincheck_0909", "</p>
<div id='div_plugin_img_player' style='  position: absolute; padding: 12px; left: 50%; top: 50%; visibility:hidden; display:none; z-index:102; vertical-align: middle;'></div>
<p>");
    }</p>
<p>    function zoominto_GetElementPostion(theElement) {
        var selectedPosX = 0;
        var selectedPosY = 0;
        tmpw = theElement.width;
        tmph = theElement.height;
        while (theElement != null) {
            selectedPosX += theElement.offsetLeft;
            selectedPosY += theElement.offsetTop;
            theElement = theElement.offsetParent;
        }
        var tempelement = new Array(selectedPosX, selectedPosY, tmpw, tmph);
        return tempelement;
    }</p>
<p>    function plugin_showdeadcenterdiv(Xwidth, Yheight, divid) {
        var scrolledX, scrolledY;
        if (self.pageYOffset) {
            scrolledX = self.pageXOffset;
            scrolledY = self.pageYOffset;
        } else if (document.documentElement &#038;&#038; document.documentElement.scrollTop) {
            scrolledX = document.documentElement.scrollLeft;
            scrolledY = document.documentElement.scrollTop;
        } else if (document.body) {
            scrolledX = document.body.scrollLeft;
            scrolledY = document.body.scrollTop;
        }
        var centerX, centerY;
        if (self.innerHeight) {
            centerX = self.innerWidth;
            centerY = self.innerHeight;
        } else if (document.documentElement &#038;&#038;
            document.documentElement.clientHeight) {
            centerX = document.documentElement.clientWidth;
            centerY = document.documentElement.clientHeight;
        } else if (document.body) {
            centerX = document.body.clientWidth;
            centerY = document.body.clientHeight;
        }
        var leftOffset = scrolledX + (centerX - Xwidth) / 2;
        var topOffset = scrolledY + (centerY - Yheight) / 2;
        var o = document.getElementById(divid);
        var r = o.style;
        r.position = "absolute";
        r.top = topOffset + "px";
        r.left = leftOffset + "px";
        r.display = "block";
    }</p>
<p>    function pluginalertShow(layerid) {
        document.getElementById(layerid).style.visibility = "visible";
        document.getElementById(layerid).style.display = "block";
        plugin_showdeadcenterdiv(280, 115, layerid);
        document.getElementById("plugin_btn_activate").focus();
    }</p>
<p>    function pluginalerthide(layerid) {
        document.getElementById(layerid).style.visibility = "hidden";
        document.getElementById(layerid).style.display = "none";
    }</p>
<p>	function zoom_getValidString(){</p>
<p>		return "&#038;isValidviewer=1";// all things are valid</p>
<p>	 }</p>
<p>    function zoominto_showflash(zoomres) {</p>
<p>        try{
			if(zoomres == undefined)
				zoomres="600x442";</p>
<p>			zoomarr=zoomres.split("x",2)
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "block";
        divimgplayer.style.visibility = "visible";</p>
<p>		//old movie 550 400
         // plugin_showdeadcenterdiv(600, 371, "div_plugin_img_player");
		  plugin_showdeadcenterdiv(parseInt(zoomarr[0]), parseInt(zoomarr[1])+120, "div_plugin_img_player");
     //   zoominto_setImage();</p>
<p>         zoominto_changeobject(document.getElementById("plugpanel").title,zoomres);</p>
<p>	        } catch (e) {
        }</p>
<p>    }</p>
<p>    function zoominto_closeflash() {
        var divimgplayer = document.getElementById("div_plugin_img_player");
        divimgplayer.style.display = "none";
        divimgplayer.style.visibility = "hidden";
    }</p>
<p>function hidezoomicon(){
document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>}</p>
<p>    function getMouseX( e ) {</p>
<p>    return e.pageX</p>
<p>    || ( e.clientX + ( document.documentElement.scrollLeft</p>
<p>    || document.body.scrollLeft ) );</p>
<p>    }</p>
<p>    function getMouseY( e ) {</p>
<p>    return e.pageY</p>
<p>    || ( e.clientY + ( document.documentElement.scrollTop</p>
<p>    || document.body.scrollTop ) );</p>
<p>      }</p>
<p>function dhtmlLoadScript(url)
{
   var e = document.createElement("script");
   e.src = url;
   e.type="text/javascript";
//   document.getElementByTagName("head")[0].appendChild(e);</p>
<p>    document.getElementById("addiv").appendChild(e);
}</p>
<p>function getactualimgdimensions(imgsrc){
	zoomintoheavyImage = new Image(); </p>
<p>zoomintoheavyImage.src = imgsrc</p>
<p> var tempelement = new Array(zoomintoheavyImage.width, zoomintoheavyImage.height);
        return tempelement;</p>
<p>}
    function plugin_run() {</p>
<p> var newcss = "#div_plugin_img_player td {padding:0;} \n #div_plugin_img_player th {padding:0;}";</p>
<p>    if ('\v'=='v') /* ie only */ {
        document.createStyleSheet().cssText = newcss;
    } else {
        var tag = document.createElement('style'); tag.type = 'text/css'; document.getElementsByTagName('head')[0].appendChild(tag); 
        tag[ (typeof document.body.style.WebkitAppearance=='string') /* webkit only */ ? 'innerText' : 'innerHTML'] = newcss;    
    }</p>
<p>		     var image = document.getElementsByTagName("img");
		var totimgLength=image.length;</p>
<p>        zoominto_initializelements();</p>
<p>        for (var i = 0; i < image.length; i++) { 			 if (image[i].className.match("myplug_img")){ 				     image[i].onmouseout = function (evt) {  						document.getElementById("plugpanel").style.visibility = "hidden"; 					} 		}// Zoom icon hidden 		zoomarrdim= getactualimgdimensions(image[i].src); 		//arrdim[0] - width  arrdim[1] - height             if (!image[i].className.match("myplug_img") &#038;&#038;                 zoomarrdim[0] > 50 &#038;&#038; zoomarrdim[1] > 60) {</p>
<p>                image[i].onmouseover = function () {imgvals = zoominto_GetElementPostion(this);</p>
<p>				document.getElementById("plugpanel").style.display = "block";document.getElementById("plugpanel").style.visibility = "visible";document.getElementById("plugpanel").style.left = imgvals[0] + "px";document.getElementById("plugpanel").style.top = imgvals[1] +  "px";document.getElementById("plugpanel").title = this.src;};
                image[i].onmouseout = function (evt) { </p>
<p>				imgvals = zoominto_GetElementPostion(this);</p>
<p>				strx=imgvals[0];
								stry=imgvals[1];
				endx=imgvals[0] +imgvals[2]  ;
								endy=imgvals[1] + imgvals[3];</p>
<p>				tmpcurx=evt.pageX;
				tmpcury=evt.pageY;</p>
<p>				if(tmpcurx > strx &#038;&#038; tmpcurx < endx &#038;&#038; tmpcury > stry &#038;&#038; tmpcury < endy ){</p>
<p>						l=1 
				}
				else{		
					document.getElementById("plugpanel").style.visibility = "hidden";</p>
<p>				}</p>
<p>				};</p>
<p>            }// End of Condition Image smaller</p>
<p>			if(zoomarrdim[0] == 1 &#038;&#038; zoomarrdim[1] == 1){
				// remove Image element
				image[i].style.display="none";
								image[i].style.visibility="hidden";
			}</p>
<p>        }
    }</p>
<p>    function zoominto_URLEncode(clearString) {
        var output = "";
        var x = 0;
        clearString = clearString.toString();
        var regex = /(^[a-zA-Z0-9_.]*)/;
        while (x < clearString.length) {             var match = regex.exec(clearString.substr(x));             if (match != null &#038;&#038; match.length > 1 &#038;&#038; match[1] != "") {
                output += match[1];
                x += match[1].length;
            } else {
                if (clearString[x] == " ") {
                    output += "+";
                } else {
                    var charCode = clearString.charCodeAt(x);
                    var hexVal = charCode.toString(16);
                    output += "%" + (hexVal.length < 2 ? "0" : "") + hexVal.toUpperCase();
                }
                x++;
            }
        }
        return output;
    }</p>
<p>    function Closeiepluginpanel() {
        closeflash();  
    }</p>
<p>    function logme(txtstr) {
//        try {
        //alert(txtstr);
		return "";</p>
<p>    }</p>
<p>    function zoominto_changeobject(url,zoomres) {
		//Method to Display the Viewer for Image</p>
<p>		imgName_bfr=(tmppluginimageURL +url + zoom_getValidString())</p>
<p>		escimgName_bfr=escape(imgName_bfr);</p>
<p>        trkval = "?chkme=" + imgName_bfr + "&#038;rootstr=" + tmppluginServername;
        pagetitle = "";
        urlstr = zoominto_URLEncode(document.location);
	zoomarr=zoomres.split("x",2)</p>
<p>		 playerwidth=parseInt(zoomarr[0]);// 800
		 tablewidth=playerwidth ;//-2 ;//798
		 playerheight=parseInt(zoomarr[1]);//600;</p>
<p>		  adwidth=468;//playerwidth -10 ;//768;
		 adheight=60;</p>
<p>	   document.getElementById("div_plugin_img_player").innerHTML = "</p>
<div onmousedown=\"zoominto_dragStart(event, 'div_plugin_img_player')\"  style='height:24px;margin-left:0px;position:relative;width: "+playerwidth +"px; z-index: 99; background-color:#ECECEC'> <MAP NAME='zoomintomap187'>    </p>
<area shape='rect' coords='0,0,108,24' href='http://www.zoominto.com' alt='Zoominto'  target='_blank'/> </MAP></p>
<table width='"+playerwidth+"' cellspacing='0' cellpadding='0'  style='border: 1px solid #CCCCCC;border-bottom:none' >
<tbody>
<tr>
<td>
<table  cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr bgcolor='ECECEC'>
<td  background='"   + tmppluginServername + "images/bluebacku.jpg' align='right'>
<table width='"+tablewidth+"' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td>
<div align='left' style='height:24px' ><img style='cursor:pointer' USEMAP='#zoomintomap187'  height='24' width='108' border='0' src='"   + tmppluginServername + "images/zoomintologo2.jpg'/></div>
</td>
<td height='24' ><span style='padding-left:4px;float:right' align='right'> <a  href='javascript:zoominto_closeflash()'><img height='21' width='21'border='0'  src='"   + tmppluginServername + "images/close.jpg'/></a></span><span style='float:right' align='right'></p>
<select style='height: 20px;'  id='resselect' onchange='zoominto_showflash(this.value)'>
<option value='600x442'>Default</option>
<option value='690x509'>115%</option>
<option value='750x553'>125%</option>
</select>
<p></span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p><!--comment--></div>
<div style='border: 1px solid #CCCCCC;border-bottom:none;margin-top:-2px;background-color:#FFF'><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" width=\""+playerwidth+"\" height='"+playerheight+"' id=\"editor\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\" /><param name=\"allowFullScreen\" value=\"false\" /><param name=\"chkme\" value=\""+imgName_bfr+ "\" /><param name=\"rootstr\" value=\""+tmppluginServername + "\" /><param name=\"movie\" value=\""+tmppluginSwfname+"\" /><param name=\"quality\" value=\"high\" /><param name=\"bgcolor\" value=\"#ffffff\" /><embed src=\""   + tmppluginSwfname +  trkval+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\""+playerwidth+"\" height='"+playerheight+"' name=\"editor\" align=\"middle\" allowScriptAccess=\"sameDomain\" allowFullScreen=\"false\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.adobe.com/go/getflashplayer\" />	</object></div>
<div style='border: 1px solid #CCCCCC;border-top:none;margin-top:-2px;background-color:#FFFFFF'>
<table width='"+playerwidth+"' style=''>
<tbody>
<tr>
<td bgcolor='#FFFFFF'>
<div align='center'>
<table width='100%' height='60' cellspacing='0' cellpadding='0' border='0'>
<tbody>
<tr>
<td bgcolor='#ffffff' >
<div align='center' ><iframe width=\""+adwidth+ "\" height=\""+adheight+ "\" frameborder=\"0\" scrolling=\"no\" vspace=\"0\" src='"   + tmppluginServername + "ads/remoteads.php5?extension=firefox&#038;hostarea=zoominto&#038;contenturl="+ document.location  +"&#038;width="+adwidth+"&#038;height="+adheight+"' name=\"google_ads_frame\" marginwidth=\"0\" marginheight=\"0\" id=\"google_ads_frame1\" hspace=\"0\" allowtransparency=\"true\"></iframe></div>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<p>\n";</p>
<p>document.getElementById('resselect').value=zoomres;</p>
<p>    }
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/sea-horse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scarlet braided wedding ring</title>
		<link>http://www.aris-titanium.com/scarlet/</link>
		<comments>http://www.aris-titanium.com/scarlet/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 19:38:01 +0000</pubDate>
		<dc:creator>shirly-admin</dc:creator>
				<category><![CDATA[Turk- Head Rings]]></category>
		<category><![CDATA[Wedding Rings]]></category>
		<category><![CDATA[hand made]]></category>
		<category><![CDATA[rose gold and white gold]]></category>
		<category><![CDATA[Snake skin ring]]></category>
		<category><![CDATA[wedding ring]]></category>

		<guid isPermaLink="false">http://localhost/aris-titanium.com/?p=1368</guid>
		<description><![CDATA[&#160; &#160; Style: snake braiding 18K rose &#38; white gold ring. Width: 5 mm Finish: polished Price: 620 $ ROSE &#38; WHITE GOLD RING &#8220;SCARLET&#8221; Snake braiding gold ring &#8220;SCARLET&#8221; in rose &#38; white gold. It is possible to order yellow &#38; rose gold ring.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aris-titanium.com/wp-content/uploads/2011/09/SCARLET2.jpg"><img class="size-full wp-image-2197 alignleft" title="SCARLET" src="http://www.aris-titanium.com/wp-content/uploads/2011/09/SCARLET2.jpg" alt="" width="380" height="227" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table id="Atlantic" style="width: 345px;" dir="ltr" border="0">
<tbody>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Style:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">snake braiding 18K rose &amp; white gold ring.<br />
</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Width:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">5 mm</span></td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-family: georgia,palatino;"><strong><strong></strong><span style="font-size: small;">Finish:</span></strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr">polished</td>
</tr>
<tr>
<td style="height: 30px; width: 60px; text-align: center;" dir="ltr"><span style="font-size: small; font-family: georgia,palatino;"><strong>Price:</strong></span></td>
<td style="height: 30px; width: 60px; text-align: left;" dir="ltr"><span style="font-family: georgia,palatino;">620 $</span></td>
</tr>
</tbody>
</table>
<h4></h4>
<h4 style="text-align: center;"><span style="font-family: georgia,palatino;">ROSE &amp; WHITE GOLD RING &#8220;SCARLET&#8221;<br />
</span></h4>
<p>Snake braiding gold ring &#8220;SCARLET&#8221; in rose &amp; white gold. It is possible to order yellow &amp; rose gold ring.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aris-titanium.com/scarlet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

