$(document).ready(function() {
	if($.browser.msie != '' && $.browser.version != 6) {
		$('.gallery_thumbs li a').click(function() {
			var string = $(this).attr('href');
			var alt = $(this).attr('title');
			if(string) {
				$('body').append('<div id="overlay"></div><div id="gallery_popup"><img src="'+string+'" alt="'+alt+'" /></div>');
			}
			$('#overlay').css('opacity',0).animate({'opacity': 0.5},'fast');
			$('#gallery_popup').css('opacity',0);
			$('#gallery_popup img').load(function() {
				var height = $('#gallery_popup img').height();
				var width = $('#gallery_popup img').width();
				$('#gallery_popup').css('height',height).css('width',width).css('margin-top',-(height/2)-1).css('margin-left',-(width/2)-1).animate({'opacity': 1},'fast');
			});
			return false;
		});
		$('body').click(function() {
			$('#overlay,#gallery_popup').remove();
		});
	}
});
