/* =============================================================================
* iShadow 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;
}

if (iShadowSniff()) {
	document.write('<link href="/etc/js/ishadow/iShadow.css" rel="stylesheet" type="text/css" />' + "\n");
}
