/*
 * Replace Images to Flash
 */
var ie5 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.0") != -1);
var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

if (!ie5) {
	jQuery(document).ready(function(){
		jQuery("a[rel='lightbox']").each(function(i){
			if (jQuery(this).children(0).attr('src') != '' && jQuery(this).children(0).attr('width') > 0) {
				i_align = jQuery(this).children(0).attr('align');
				i_width = jQuery(this).children(0).attr('width');
				i_height = jQuery(this).children(0).attr('height');
				i_hspace = 0;
				i_vspace = 0;
				if (jQuery(this).children(0).attr('hspace')) {
					i_width += jQuery(this).children(0).attr('hspace') * 2;
					i_hspace += jQuery(this).children(0).attr('hspace');
				}
				if (jQuery(this).children(0).attr('vspace')) {
					i_height += jQuery(this).children(0).attr('vspace') * 2;
					i_vspace += jQuery(this).children(0).attr('vspace');
				}
				jQuery(this).children(0).removeAttr('align');
				
				jQuery(this).wrapInner('<div style="position:relative; float:' + i_align + '; width:' + i_width + 'px; height:' + i_height + 'px"></div>');
				jQuery(this).children(0).append('<img alt="Увеличить" title="Увеличить" style="position:absolute; top:' + (i_height - i_vspace - 16) + 'px; left:' + (i_width - i_hspace - 16) + 'px" src="img/zoom.png" width="16" height="16">');
			}
		});
	});
}
