$(document).ready(function(){

	$('.tabs a').click(function(){
		tab_id = $(this).attr('href');
		$(tab_id).siblings('.tab-body').hide();
		$(tab_id).show();
		$(this).siblings('a').removeClass('active');
		$(this).addClass('active');
		return false;
	});
	$('.tabs a:first').click()

	$('table.product td.gallery a.preview').click(function(){
		$(this).siblings('a').removeClass('active');
		$(this).addClass('active');
		$('#big_pict').attr('src',$(this).attr('href'));
		return false;
	});

	$('table.cloth a.show_samples').click(function(){
		$(this).parents('tr').next('tr.samples').find('td').toggle();
		return false;
	});

	$('#divan .image .button').click(function(){
		$('#divan .image').css('visibility','visible');
		$(this).parent().css('visibility','hidden');
		return false;
	});

});
