$(function(){

	$('ul#promo-imgs').animatedinnerfade({ 
		speed: 2000, 
		timeout:  4000, 
		type: 'sequence', 
		containerheight: '305px', 
		containerwidth: '522px', 
		animationSpeed: 0, 
		animationtype: 'fade',
	});

	$('INPUT.input-text').each(function(){
		$(this).focus(function () {
			$(this).addClass("focus");
		});
 
		$(this).keypress(function () {
			$(this).addClass("has-text").removeClass("focus");
		});
 
		$(this).blur(function () {
			if($(this).val() == "") {
				$(this).removeClass("has-text").removeClass("focus");
			}
		});
	});
	
	// *** comparation heights of laft and right panels and set equal valuw for both ***
	var left_height = $('#leftpanel').height();
	var right_height = $('#rightpanel').height();
	//alert('left = '+left_height+' | right = '+right_height);
	
	if (left_height < right_height) {
		$('#paper').height(right_height-115);
	}
	/*
	if (left_height > right_height) {
		$('#blackboard').height(left_height+1);
	}
	*/



	$("A.thumb").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
		'zoomOpacity'			: true,
		'overlayShow'			: false,
		'zoomSpeedIn'			: 500,
		'zoomSpeedOut'			: 500
	});



});


