var loaded_universal_bigimage_div = false;

function hideall() {
	 hide('sm1'); hide('sm2'); hide('sm3'); hide('sm4');
}
function hide(obj_id) {
	$('#'+obj_id).hide();
}
function show(obj_id, this_ss) {
	var left = $('#'+this_ss).offset().left - $('#container').offset().left;
	$('#'+obj_id).css('position', 'absolute').css('left', left);
	$('#'+obj_id).show();
}

$(window).load(function() {
	$('a.splash_image').live('click', function(e) {
		if($('#universal_bigimage_div').length==0) {
			$('#content').append(
'<!-- большое изображение -->\
<div id="universal_bigimage_div" style="display:none;z-index:1000;">\
  <table>\
    <tr><td class="border1"></td><td class="border2"></td><td class="border3"></td></tr>\
    <tr>\
      <td class="border4"></td>\
      <td class="border5">\
<img id="universal_bigimage_img" src="/public/t/tpl_new/img/1px.gif" alt="" />\
      </td>\
      <td class="border6"></td>\
    </tr>\
    <tr><td class="border7"></td><td class="border8"></td><td class="border9"></td></tr>\
  </table>\
</div>');
			$('#universal_bigimage_div').css('position', 'fixed').css('left', '50%').css('top','50%');
			$('#universal_bigimage_img').load(function() {
				$('#universal_bigimage_div').show();
				var w = $(this).width();
				var h = $(this).height();
				$('#universal_bigimage_div').css('margin-left', -Math.round(w/2) + 'px').css('margin-top', -Math.round(h/2) + 'px');
			});
			$('#universal_bigimage_div').click(function() {
				$('#universal_bigimage_div').hide();
			})
		}

		$('#universal_bigimage_img').attr('src', $(this).attr('href'));
		return false;
    });
});
