/* =============================================================================
* iFadeImg v0.1 -- Template Dropshadow Filter/Apply
*
* Developed by Puna Tannehill
* For Imaginary Landscape, LLC <www.imagescape.com>
* Copyright (c) 2008-2009
*
* Last updated 2008.07.31
*
* Reuse or modification without permission is prohibited.
*
* ==============================================================================
* ############################################################################ *
* ##                        DO NOT MODIFY THIS FILE                         ## *
* ############################################################################ *
* --------------------------------------------------------------------------- */

function iShadowSniff() {
	if (document.getElementById) {
		var iMUA = navigator.userAgent.toLowerCase();
		var iMAV = navigator.appVersion.toLowerCase();
		if (iMUA.indexOf('msie')!=-1) {
		  var opv = iMUA.split('msie');
		  if (parseInt(opv[1])<7) { return false; }
		} return true;
	} return false;
}

iShadowSniff()


if(iShadowSniff()) {
 var domscr = '<link href="/suitelib/etc/ishadow/iShadow.css" rel="stylesheet" type="text/css" />' + "\n";
 document.write(domscr);
}