$(document).ready(function(){


var MaxLength = 170;

$('.imgGallery').each(function(index) {
		MaxW = $(this).attr('width');
		MaxH = $(this).attr('height');

		var MaxIdx = MaxLength;
		var idx = MaxIdx /  MaxW;
		if (MaxH > MaxW) { 
  		idx = MaxIdx /  MaxH
		}
		MaxW = MaxW * idx;
		MaxH = MaxH * idx;
		$(this).attr('width',MaxW);
		$(this).attr('height',MaxH);

  });


$('#boxLogin').append($('#boxGallery').html());
$('#boxGallery').empty();
        $('#gallery a').lightBox();

$("div.indexChar > a").bind("click", function(){ e = $(this); viewDiv(e); 	});

function viewDiv (e) {

eValue = (e.attr("id"));
$("div#allChar > div").hide();
$("div#allChar > div:eq("+eValue+")").show();

}

});

