$(document).ready(function(){
	$('#more_chars, #full_chars_close').click(function() {toggleChars();});
	$('.product_small').hover(
		function() {$(this).css('border','1px solid #2883d0');},
		function() {$(this).css('border','1px solid #cacaca');}
	);
	$('.product_small').click(
		function() {
			var big = $(this).find('img').attr('big');
			$('#product_big').html('<img src="'+big+'">');
		}
	);
 });
 


 var tc = 0;
 function toggleChars()
 {
	if (tc == 0)
	{
		$('.goods2').css('height','auto');
		tc = 1;
	}
	else
	{
		$('.goods2').css('height','450px');
		tc = 0;
	}
	
	$('#full_chars').toggle();
 }
 
 
var left = 0;
function movebr(type)
{
	var trueWidth = 0;
	$('#inside img').each(function() {
		trueWidth += $(this).width();
	});

	max = parseInt($('#width').width() - 878);

	if (type == 1)
	{
		if (left < max)
		{
			$('#inside').animate({marginLeft: '-=100'}, 300);
			left = parseInt(left + 100);
		}	
	}
	else
	{
		if (left > 0)
		{
			$('#inside').animate({marginLeft: '+=100'}, 300);
			left = parseInt(left - 100);
		}
	}
}
