
	$(document).ready(function(){
		
		$(window).load(function() {
			if ($.browser.msie && parseInt($.browser.version.substr(0, 1)) < 7) {

				$('#page').each(function(){
					var bg = $(this).css("backgroundImage");
					bg.match(/^url[("']+(.*\.png)[)"']+$/i);
					bg = RegExp.$1;
					$(this).css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + bg + "', sizingMethod='crop')").css("backgroundImage", "none");
				});
				
				$(".fotos_marco_redondeadas img").each(function(){
					$(this).css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $(this).attr('src') + "', sizingMethod='scale')").attr("src", rutaweb+"/images/blank.gif");
				});
				
				$("#div_arriba_logo img").each(function(){
					$(this).css("filter", "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $(this).attr('src') + "', sizingMethod='scale')").attr("src", rutaweb+"/images/blank.gif");
				});
				
			}
		});

	});