function indexIni() {
	
	function MouseOverLink(){
		$('#go-to-main').hover(
        			function() {
					$('#arrow').show();
				},
				function() {
					$('#arrow').hide();
				}
    		);
		
	};

	
	MouseOverLink();
}

	function MainMenuOver(){
		$('.main-menu ul li').hover(
        			function() {
				//$(this).addClass("active-page");
				$(this).find('ul').stop(true, true);
				$(this).find('ul').show();
			},
			function() {
				//$(this).removeClass("active-page");
				//if (!($(this).hasClass('current-page'))) {
					$(this).find('ul').hide();
				//};
			}
    		);
		
		$('.side-menu ul li').hover(
        			function() {
				//$(this).addClass("active-page");
				$(this).find('ul').stop(true, true);
				$(this).find('ul').slideDown('fast');
			},
			function() {
				//$(this).removeClass("active-page");
				if (!($(this).find('a').hasClass('active-item'))) {
					$(this).find('ul').slideUp('fast');
				};
			}
    		);
	}

	function MashaSaidReplace(element, options){
		$('.masha-said').css('margin',(-91-$(element).height())+'px 0 0 -406px');
	}

$(document).ready(function() {
		$('.content-right').css('height',($(window).height()-108)+'px');
		Cufon.replace('#m-m-1-a, #m-m-2-a, #m-m-3-a, #m-m-4-a, #m-m-5-a', {fontFamily: 'cleanvertising', hover: true});
		Cufon.replace('#m-m-1-sub, #m-m-3-sub, #m-m-4-sub, #m-m-5-sub', {fontFamily: 'myriadprocond', hover: true});
		Cufon.replace('#s-m-1-a, #s-m-2-a, #s-m-3-a, #s-m-4-a, #s-m-5-a', {fontFamily: 'myriadprocond', hover: true});
		Cufon.replace('.footer-text, .footer-text-white, .photo-album-item-caption', {fontFamily: 'myriadprocond'});
		Cufon.replace('.masha-said', {fontFamily: 'london', onAfterReplace: MashaSaidReplace('.masha-said')});
		$('.side-menu ul li ul').hide();
		$('.side-menu ul li').find('a.active-item').next('ul').slideDown();
		MainMenuOver();
		$('.scroll-pane').jScrollPane({showArrows: true, autoReinitialise: true});
});
