// JavaScript Document

//$(document).ready
//(
// 	function()
//	{
//    $('#sidebar a').hover
//    (
//        function()
//        {
//            $(this).fadeTo(50,.8);
//        }
//        ,
//        function()
//        {
//            $(this).fadeTo(50,1);
//        }
//    )
//});


//$(document).ready(function(){
//    setTimeout(function(){
//        $('#splash').fadeOut(800,function(){
//        });
//    },1000);
//});

$.preloadImages("logo2.png");

   $(document).ready
   	(function () 
	{
		setTimeout(function(){$('#splash').css({ 'background': '#FFF url(logo2.png) no-repeat 49% 40%'});},800);
		setTimeout(function(){$('#splash').fadeOut(1000);},1500);
    });