$(function() {
	// forms
	function toggleGroup() {
		$(this)
			.parents('.group:first')[(this.checked ? 'add' : 'remove') +'Class']('group-opened')
				.find('.group-content :input:first-child').focus();
	}
	$('form .group :input:first-child').click(toggleGroup);

	// tabs
	$('.tabs-outer').find('.tab-content:first').show();
	$('.tab a').click(function() {
		$(this).parents('.tab').addClass('tab-active')
			.siblings('.tab').removeClass('tab-active');
		$(this.hash).show()
			.siblings('.tab-content').hide();
		return false;
	});

	// leftside menus
	$('#leftside h3 i').click(function() {
		$(this).parent('h3').find('~ ul').eq(0).toggle(!$(this).toggleClass('plus').hasClass('plus'));
	});

	// previews
	$('#previews a').click(function() {
		$(this).parents('.column').eq(0).addClass('active')
			.siblings().removeClass('active');
		$('#product').attr('src', this.href);
		return false;
	});
});
document.write(
	'<style type="text/css">'+
		'.tab-content {display: none;}'+
	'</style>'
);

// Отключаем куфон для Opera 10-
if (!(jQuery.browser.opera && parseInt(jQuery.browser.version) < 10)) {
	Cufon.replace('h2')('h3')('h4');
}
