/**
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the license
 * that is bundled with this package in the file LICENSE.txt.
 * If you did not receive a copy of the license, please send an email
 * to info@temgra.com so we can send you a copy immediately.
 *
 * @copyright Copyright (c) 2009 temgra.com - Templates and Graphics Online Store (http://www.temgra.com)
 * @license   http://www.temgra.com/license
 * 
 */
function showZoom(g,i){var f=135;var c=135;var m=265;var l=265;var o=-(m/2+7);var n=c+5;var d=0;var b=0;var a=0;var h=0;if(!g){g=window.event}if(g.pageX||g.pageY){a=g.pageX;h=g.pageY}if(g.clientX||g.clientY){a=g.clientX+document.documentElement.scrollLeft;h=g.clientY+document.documentElement.scrollTop}var k=parseInt(a);var j=parseInt(h);if(g.offsetX||g.offsetY){d=window.event.offsetX;b=window.event.offsetY}if(g.layerX||g.layerY){d=g.layerX;b=g.layerY}document.getElementById("zoom").style.left=k+f+o-d+"px";document.getElementById("zoom").style.top=j+n-b+"px";document.getElementById("zoomImg").src=i;document.getElementById("zoom").style.visibility="visible"}function hideZoom(){document.getElementById("zoom").style.visibility="hidden";document.getElementById("zoomImg").src="../images/loading.gif"};
