﻿    $(document).ready(function () {
    	/*
        var newT = $(window).height() / 2 - ($('#centerContent').height() / 2);
        var newL = $(window).width() / 2 - ($('#centerContent').width() / 2);
        */
        var newT = $(document).height() / 2 - ($('#centerContent').height() / 2);
        var newL = $(document).width() / 2 - ($('#centerContent').width() / 2);

        $('#centerContent').css({ top: newT, left: newL });
        $('#imgbg').css({opacity:0,height:$('#centerContent').height()});
		$('#lang_select').css({left:newL+25,top:newT+10});
        $('#imgbg').animate({opacity:1},3500);
        
        $('#siteTitle').css({opacity:0});
        
        $('#siteTitleDetails').css({opacity:0});
        $('#NavItem_F').css({opacity:0});
        
    	$('#siteTitle').delay(800).animate({opacity:1},3000,function(){
    		$('#NavItem_F').animate({opacity:1},1000);
    		$('#siteTitleDetails').animate({opacity:1},1000);
    	});
		
        $('.NavItemTitle').bind({
        	click:function(){
        		//alert($(this).attr('alt'));
        		if($(this).attr('alt')){
        			if($(this).attr('alt')!='none'){
	        			location.href=$(this).attr('alt');
        			}
        		}else{
        			history.go(-1);
        		}
        	},
            mouseenter: function () {
                $(this).addClass('NavItemTitleHover');
                $(this).parent().find('.NavItemIMG').fadeIn(400);
            },
            mouseleave: function () {
                $(this).removeClass('NavItemTitleHover');
                $(this).parent().find('.NavItemIMG').hide();
            }
        });
    });
    
	function dd(){
		var newT = $(window).height() / 2 - ($('#centerContent').height() / 2);
        var newL = $(window).width() / 2 - ($('#centerContent').width() / 2);

        $('#centerContent').css({ top: newT, left: newL });
        $('#imgbg').css({opacity:0,height:$('#centerContent').height()});
        $('#imgbg').animate({opacity:1},3500);
        
        $('#siteTitle').css({opacity:0});
        
        $('#siteTitleDetails').css({opacity:0});
        $('#NavItem_F').css({opacity:0});
        
    	$('#siteTitle').delay(800).animate({opacity:1},3000,function(){
    		$('#NavItem_F').animate({opacity:1},1000);
    		$('#siteTitleDetails').animate({opacity:1},1000);
    	});

	}
