	


		$(document).ready(function(){
			var nav= $("ul.nav > li");
			$("div",nav).hide();
			$(nav).hover(
				function(){
					$(this).children("div").fadeToggle((200), "linear");

				},
				function(){
					$(this).children("div").fadeOut(200);					
				}
			);
			
			
			
		});		
		
		
		
		
				$(document).ready(function(){
			var gallery= $("ul.gallery > li");
			$("div",gallery).hide();
			$(gallery).hover(
				function(){
					$(this).children("div").fadeToggle(600);
				},
				function(){
					$(this).children("div").fadeToggle(100);					
				}
			);
			
			
			
		});
		
	
		
				$(".top").hover(

			function() { $(this).animate({top: 10}, 300); }, 

			function() { $(this).animate({top: 0}, 300); }

		); 
		
		
		
						$(".rooms_winter").hover(function() { 
						
						$(this).fadeTo( 800, 0 );},


			            function(){ $(this).fadeTo( 800, 1 );}


); 


$(document).ready(function(){	
	$('.1').css("display", "none").fadeIn(700);
});


$(document).ready(function(){	
	$('.2').css("display", "none").fadeIn(1200);
});


$(document).ready(function(){	
	$('.3').css("display", "none").fadeIn(2000);
});




function goToByScroll(id){
$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
		}



/*
function simple_tooltip(target_items, name){
 $(target_items).each(function(i){
		$("body").append("<div class='"+name+"' id='"+name+i+"'><p>"+$(this).attr('title')+"</p></div>");
		var my_tooltip = $("#"+name+i);
		
		$(this).removeAttr("title").mouseover(function(){
				my_tooltip.css({opacity:0.8, display:"none"}).fadeIn(400);
		}).mousemove(function(kmouse){
				my_tooltip.css({left:kmouse.pageX+15, top:kmouse.pageY+15});
		}).mouseout(function(){
				my_tooltip.fadeOut(400);				  
		});
	});
}

	
$(document).ready(function(){
	 simple_tooltip("a","tooltip");
});

*/




$(function(){   
  
    // basic usage   
    $('a.normalTip').aToolTip();   
 /*         
    // fixed tooltip   
    $('a.fixedTip').aToolTip({   
        fixed: true  
    });   
       
    // on click tooltip with custom content   
    $('a.clickTip').aToolTip({   
        clickIt: true,   
        tipContent: 'Hello I am aToolTip with content from param'  
    });    
       
   
    $('a').aToolTip({   
        clickIt: false,                     // set to true for click activated tooltip   
        closeTipBtn: 'aToolTipCloseBtn',    // you can set custom class name for close button on tooltip   
        fixed: false,                       // Set true to activate fixed position   
        inSpeed: 400,                       // Speed tooltip fades in   
        outSpeed: 100,                      // Speed tooltip fades out   
        tipContent: '',                     // Pass in content or it will use objects 'title' attribute   
        toolTipClass: 'aToolTip',           // Set custom class for tooltip   
        xOffset: 5,                         // x Position   
        yOffset: 5                          // y position   
    });  
	*/ 
       
}); 



$(".border3").dropShadow({left: 8, top: 10, opacity: 0.8, blur: 4});
