﻿var zoomFunc = function(dimension) {
	return dimension * 1;
}
var shrinkFunc = function(dimension) {
	return dimension * 0.9;
}
$(document).ready(function(){
	display = 9;
	$('#items img').click(function(e) {
		e.preventDefault();
		var el = $(this);
		el.expose({
			onBeforeLoad: function() {
				anim = {
					width: 400,
					height: 300,
					left: 45,
					top: 25
				};
				if (el.hasClass('exp_right')) {
					anim.left = -200;
				}
				if (el.hasClass('exp_top')) {
					anim.top = -200;
				}
				el.animate(anim);
			},
			onBeforeClose: function() {
				anim = {
					width: 160,
					height: 120,
					left: 45,
					top: 25
				};
				el.animate(anim);
			}
		});  
	});
	$('#client').toggle(function(e) {
		e.preventDefault();
		$(this).text('Нет, спасибо.');
		$('#items-cont').hide();
		$('#fm-form').show();
	},function(e) {
		e.preventDefault();
		$(this).text('Заказать?');
		$('#fm-form').hide();
		$('#items-cont').show();
	});
	$('div.tabs a').click(function(e) {
		e.preventDefault();
		$('div.tabs div').removeClass('cur-tab');
		$(this).parent().addClass('cur-tab');
		var t = $(this).attr('href');
		$('#cmiddle-left ul.active').hide().removeClass('active');
		$('#cmiddle-left ul.'+t.slice(1)).show().addClass('active');
	});
});
