/* ------------------------------------------------------------
 * PROJECT        : FHSC Interface Standard
 * FILENAME       : ie.js
 * ------------------------------------------------------------
 * DATE CREATED   : 03 Aug 2006
 * LAST UPDATED   : 12 Apr 2007
 * ------------------------------------------------------------
 * AUTHOR(S)      : Kevin Scholl (http://www.ksscholl.com/)
 * ------------------------------------------------------------
 * NOTE(S)        : Because IE tends to not play nice with the
 *                : freakin' standards...
 * ------------------------------------------------------------ */

/* ------------------------------------------------------------
 * IE BACKGROUND IMAGE FLICKER FIX
 * ------------------------------------------------------------ */

$(document).ready(function() {
													 
  // Fix background image caching problem
	try { document.execCommand("BackgroundImageCache", false, true); }
	catch(err) {}

	$("fieldset ol li:has(label)").css("padding-left","217px");
	$("fieldset ol li label").css("margin-left","-217px");

	$("#snOpenIndicator").click(function() {
		$("select").css("visibility","visible")
		});
	$("#snClosedIndicator").click(function() {
		$("select").css("visibility","hidden")
		});

	});
