// JavaScript Document
$(document).ready(function(){
	$('.loading').fadeOut("fast", 
		function () {
		    $('.loading').remove();
			$('div.isee').fadeIn("slow",
				function () {
					$('div.isee img').fadeIn(2000,
						function () {
							setTimeout(function () {
							$('div.isee').fadeOut("slow",
								function () {
									setTimeout(function () {
									$('.div.isee').remove();
									$('.main_container').fadeIn(3000,
										function () {
											/* сияние меняет яркость */
											/*setInterval(function () {
												_rand = Math.random() * (1 - 0.9) + 0.9;
												$('.main_container').fadeTo(600, _rand);
												}, 20)*/
											setTimeout(function () {
											$('.logo').fadeIn(1000,
												function () {
													$('.contacts').fadeIn(1500);
													setTimeout( function () {
															$('.partner1').fadeIn(1500,
																function () {
																	$('.partner1').fadeTo(500, 0.6);
																	$('.footer').fadeIn(1000);
																}
															);
														}
													,1000);
												}
											);
											}, 3000)
										}
									);
									}, 2000)
								}
							);
							}, 2000)
						}
					);
				}
			);
		}
	);
});
