$(document).ready(function(){
	$('ul#inside-beauty li a').fadeTo('', .45);

	$('ul#inside-beauty li').mouseenter(function(){
		$(this).children('a').fadeTo('', 1.0);
		$(this).find('span').fadeIn('fast');
	});
	
	$('ul#inside-beauty li').mouseleave(function(){
		$(this).children('a').fadeTo('', .45);
		$(this).find('span').fadeOut('fast');
	});
	
	$('table.ig_reset').hide();
	$('table.ig_reset tr:last').hide();
	
	var translate = false;
	
	function translateToggle(){
		if(translate==false){
			$('table.ig_reset').fadeIn();
			translate = true;			
		} else {
			$('table.ig_reset').fadeOut();
			translate = false;
		};
	};
	
	$('div.translate p a').click(translateToggle);

	$('div.product td.image img').hide().load(function() {
		var max_width = 150;
		var img = $(this);
		
		if (img.width() > max_width)
		{
			var ratio = img.height() / img.width();

			img.width(max_width)
		  	  .height(max_width * ratio)
		  	  .parent('a').css({
				overflow: 'hidden',
				width: max_width + 'px'
			});
		}

		img.show();
	});

	$('div#details div.product-photo img').load(function() {
		var max_width = 325;
		var img = $(this);
		
		if (img.width() > max_width)
		{
			var ratio = img.height() / img.width();

			img.width(max_width)
		  	  .height(max_width * ratio)
		  	  .parent('a').css({
				overflow: 'hidden',
				width: max_width + 'px'
			});
		}
	});

});
