var testQ = new Object;
testQ.q1 = 3;      
testQ.q2 = 2;      
testQ.q3 = 1;      
testQ.q4 = 3;      
testQ.q5 = 1;      
testQ.q6 = 3;      
testQ.q7 = 2;      
testQ.q8 = 2;      
testQ.q9 = 3;      
testQ.q10 = 2;      
testQ.q11 = 4;      
testQ.q12 = 3;      
testQ.q13 = 2;      
testQ.q14 = 4;      
testQ.q15 = 2;      
testQ.q16 = 4;      
testQ.q17 = 4;      
testQ.q18 = 2;      
testQ.q19 = 3;      
testQ.q20 = 1;      
testQ.q21 = 2;      
testQ.q22 = 1;      
testQ.q23 = 2;      
testQ.q24 = 1;      
testQ.q25 = 3;      

$(document).ready(function() {
	window.slides = $('.news-item').get();
	window.next_slide = 1;
   
	if($('.news-item').get(0)){
		$('#news-holder').scrollTo($('.news-item').get(0),0);
	}
	$('#arrow-right').click(function(){
		var next = $('.news-item').get(window.next_slide);
		if(next){
			window.next_slide += 1;
		}else{
			window.next_slide = 0;
			var next = $('.news-item').get(window.next_slide);
			window.next_slide = 1;
		}
		$('#news-text').scrollTo(next,400);
		return false;
	});
	
	$('#arrow-left').click(function(){
		window.prev_slide = window.next_slide - 2;
		
		if(window.prev_slide < 0){
			window.prev_slide = window.slides.length-1;
		}
		
		window.next_slide = window.prev_slide + 1;
		
		var prev = $('.news-item').get(window.prev_slide);
		window.slide = window.prev_slide-1;
		
		$('#news-text').scrollTo(prev,400);
		return false;
	});
	
	$("#lnk-send").click(function() {
		
		if($('#name').val() != '' && $('#email_phone').val() != '' && $('#message').val() != ''){
			$.ajax({
				type: "POST",
				url: '/contacts/',
				data: $('#contacts').serialize(),
			});
			
			$("#contacts").fadeOut(500, function() {
				$("#thanks").fadeIn(500);
				$('#name').val('');
				$('#email_phone').val('');
				$('#message').val('');
			});
		}else{
			if($('#name').val() == ''){
				animateError('name');
				error = true;
			}
			
			if($('#email_phone').val() == ''){
				animateError('email_phone');
				error = true;
			}
			
			if($('#message').val() == '' ){
				animateError('message');
				error = true;
			}
		}
		return false;
	});
	
	$("#lnk-more").click(function() {
		$("#thanks").fadeOut(500, function() {
			$("#contacts").fadeIn(500);
		});
		return false;
	});
	
	$(".see-map").click(function() {
		var id = $(this).attr('id');
		$(".see-map").removeClass('act');
		$(this).addClass('act');
		$(".maps").hide(0, function() {
			$("#" + id + "i").show();
		});
		return false;
	});
	
	
	$('a.tooltip').tooltip({showURL: false});
	
	// $('#test select').change(function () {
		// var q = $(this).attr('id');
		// var a = $(this).val();
		// var div = $(this).parent('div');
		// if(testQ[q] == a) {
			// $(div).children('img').remove();
			// $(this).after('<img src="images/tick-green.gif" width="20" height="18" border="0" />');
		// }else{
			// $(div).children('img').remove();
			// $(this).after('<img src="images/cross-red.gif" width="20" height="18" border="0" />');
		// }
		// return true;
	// });
	
	$('#next_five a').click(function(){
		for(i=1; i<5; i++){
			if($('#f' + i).is(':visible')){
				var error = false;
				var msg = 'Выберите вариант ответа для всех вопросов.';
				
				if($('#f' + i +' div.row:not(:has(:radio:checked))').length > 0){
					error = true;
				}
				
				if(!error){
					$('#f' + i).hide();
					$('#f' + (i + 1)).show();
					
					if(i == 4){
						$('#next_five').hide();
						$('#test_results').show();
					}
					
				}else{
					alert(msg);
				}
				
				break;
			}
		}
		return false;
	});
	
	$('#test_results a').click(function(){
		$('#test').hide();
		$('#test-res').show();
		$('#test-res').append($('#test').contents());
		$('#test-res div').show();
		var correct = 0;
		$('#test-res input:checked').each(function(){
			var q = $(this).attr('name');
			var qid = $(this).attr('id');
			var a = $(this).val();
			if(testQ[q] == a){
				correct++;
			}
		});
		
		$('#test-res input').each(function(){
			var q = $(this).attr('name');
			var qid = $(this).attr('id');
			var a = $(this).val();
			if(testQ[q] == a){
				$('#' + qid).before('<img src="images/tick-green.gif" width="20" height="18" border="0" />');
			}else{
				$('#' + qid).before('<img src="images/cross-red.gif" width="20" height="18" border="0" />');
			}
		});
		
		$('.t-correct').html(correct);
		
		if(correct < 6) {
			var level = 'начальный';
		}
		if(correct > 5 && correct < 11) {
			var level = 'ниже среднего';
		}
		if(correct > 10 && correct < 16) {
			var level = 'средний';
		}
		if(correct > 15 && correct < 21) {
			var level = 'выше среднего';
		}
		if(correct > 20) {
			var level = 'высокий';
		}
		
		$('.t-level').html(level);
		
		$('html, body').animate({scrollTop:0}, 'slow');
		$('#test-descr').hide();
		return false;
	});
	
});


(function(d){d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(f,e){d.fx.step[e]=function(g){if(!g.colorInit){g.start=c(g.elem,e);g.end=b(g.end);g.colorInit=true}g.elem.style[e]="rgb("+[Math.max(Math.min(parseInt((g.pos*(g.end[0]-g.start[0]))+g.start[0]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[1]-g.start[1]))+g.start[1]),255),0),Math.max(Math.min(parseInt((g.pos*(g.end[2]-g.start[2]))+g.start[2]),255),0)].join(",")+")"}});function b(f){var e;if(f&&f.constructor==Array&&f.length==3){return f}if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return[parseInt(e[1]),parseInt(e[2]),parseInt(e[3])]}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return[parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55]}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return[parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16)]}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return[parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16)]}if(e=/rgba\(0, 0, 0, 0\)/.exec(f)){return a.transparent}return a[d.trim(f).toLowerCase()]}function c(g,e){var f;do{f=d.curCSS(g,e);if(f!=""&&f!="transparent"||d.nodeName(g,"body")){break}e="backgroundColor"}while(g=g.parentNode);return b(f)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]}})(jQuery);

function animateError(el){
	$("#"+el)
			.animate({ backgroundColor: "#ffccd4" }, 1000)
			.animate({ backgroundColor: "#fff" }, 1000)
			.animate({ backgroundColor: "#ffccd4" }, 1000)
			.animate({ backgroundColor: "#fff" }, 1000);
}
