ie9 = (navigator.userAgent.indexOf( 'MSIE 9' ) !== -1);
	
		$(document).ready(function(){
			if (!ie9){
				DetectImageState.init('img/1x1.gif', images_detected);
				function images_detected(bDisabled) {
					if (bDisabled){
						$("#take_back, #extra_strength, #start_day, #am_package, #button_helpful_tips, #button_product_facts, #button_save_one_fifty, #product_facts #specifically, #product_facts .bayer_am, #product_facts .package, #product_facts #button_save_dollar_fifty, #helpful_tips h1.helpful_tips, #helpful_tips #from_Mitzi, #helpful_tips #Mitzi_Dulan, #helpful_tips #mitzi_photo, #main_nav a, #logo").css("text-indent", "0px");
						$("#home #main_container").css("background-color","#1EAFEA");
						$("#weather_widget .links").css({position:"relative",top:"10px"})
					}
				}
			}
			else if (!IsImageOk(document.getElementById("bayer_cross"))){
				$("#take_back, #extra_strength, #start_day, #am_package, #button_helpful_tips, #button_product_facts, #button_save_one_fifty, #product_facts #specifically, #product_facts .bayer_am, #product_facts .package, #product_facts #button_save_dollar_fifty, #helpful_tips h1.helpful_tips, #helpful_tips #from_Mitzi, #helpful_tips #Mitzi_Dulan, #helpful_tips #mitzi_photo, #main_nav a, #logo").css("text-indent", "0px");
				$("#home #main_container").css("background-color","#1EAFEA");
				$("#weather_widget .links").css({position:"relative",top:"10px"});
			}
		});
	
		
function IsImageOk(img) {
    if (!img.complete) {
        return false;
    }

    //These give the true size of the image. If it failed
    // to load, either of these should be zero.
    if (typeof img.naturalWidth != "undefined" && img.naturalWidth == 0) {
        return false;
    }

    // No other way of checking: assume it's ok.
    return true;
}	

