function _loadPage() {
		//additional properties for jQuery object
		//align element in the middle of the screen
		$.fn.alignCenter = function() {
			//get margin left
			var marginLeft = Math.max(40, parseInt($(window).width()/2 - $(this).width()/2)) + 'px';
			//get margin top
			var marginTop = Math.max(40, parseInt($(window).height()/2 - $(this).height()/2)) + 'px';
			//return updated element
			return $(this).css({'margin-left':marginLeft, 'margin-top':marginTop});
		};

		$("#albom").show(
			1000, function(){
			$('#frame_content_title').show();
			$('#mn_skazka').show();
			$('#mn_film').show();
			$('#mn_music').show();
			$('#mn_photo').show();
			$('#mn_team').show();
			$('#mn_info').show();

			setTimeout(function(){$('#frame_content').show(1000,  function () {
			$('#loading').hide();
			});},1500);
			setTimeout(function(){$('#nav_home').show('scale', {percent: 100}, 500, '');},2000);
			});
		setTimeout(function(){$('#nav_home').draggable({ revert: 'invalid' }).draggable({ scroll: false });},2000);		
	}
	
	function resetContent() {
		$('#frame_content').hide();
		$('#frame_content').css("top", "325px");
		$('#frame_content').css("left", "514px");
	}	
	
	//close pop-up box
	function closePopup(preffix)
	 {
	   $('#' + preffix + '_opaco').toggleClass('hidden').removeAttr('style');
	   $('#' + preffix + '_popup').toggleClass('hidden');
	   if (preffix == 'video') {
		$('#video_container').html('');
		} else {
		$(".mycontent").html('');
		}
	   return false;
	 }
	 
	function showVideoPopup(video_index)
	{
		$('#video_opaco').height($(document).height()).toggleClass('hidden');
		$('#video_container').html($('#' + video_index + '_video').html());		
		$('#video_popup').alignCenter().toggleClass('hidden');
	}
	function showSkazka() {
		showPopup(1);
		resetContent();
		$('#frame_content').html('<img src="img/content/pf_obj_home.png">').show(100);
	}
	
	function showMovie() {
		showPopup(6);
		resetContent();
		$('#frame_content').html('<img src="img/content/pf_obj_home.png">').show(100);
	}
	
	function showMusic() {
		showPopup(2);
		resetContent();
		$('#frame_content').html('<img src="img/content/pic_devochka_klubnika.png">').show(100);
		$('#frame_content').css("top", "270px");
		$('#frame_content').css("left", "760px");
	}
	
	function showPhoto() {
		showPopup(3);
		$('#frame_content').hide();
		$('#frame_content').css("top", "137px");
		$('#frame_content').css("left", "410px");
		$('#frame_content').html('<img src="img/photos/albom.jpg" />').show(400);		
	}

	function showTeam() {
		showPopup(4);
	}
	
	function showInfo() {		
		resetContent();		
		$('#frame_content').html('<img src="img/content/pic_devochka_klubnika.png">').show(100);
		$('#frame_content').css("top", "270px");
		$('#frame_content').css("left", "760px");
		showPopup(5);
	}
	
