$( document ).ready( function(){
	
	var IS_IE_6 = $.browser.msie && $.browser.version < 7;
	
	$('.botoes a').hover(
		function(){
			$(this).find('span')
				.css({'display' : 'block', 'opacity':0, 'left': '-10px' })
				.animate({ 'left':0, 'opacity': 1 }, 250)
		},
		function(){
			$(this).find('span').fadeOut('fast');
		}
	);
	
	$('.botoes a').click(function(){
		var to = $(this).attr('href');
		
		$.scrollTo(to, 1200);
		
		return false;
	});
	
	
	
	/** Animation **/
	for( var i in items) {
		$(items[i]).hide();
	}
	//_animate(0, 700);
	
	
	$('.sobre').fadeIn( 'slow', function(){ 
		$('.fotos').fadeIn( function(){
			$('.hotel-link, .album-link, .contato-link').fadeIn();
			
			if(IS_IE_6) {
				$('.contato').show();
			}else {
				$('.contato')
					.css({'display' : 'block', 'opacity':0, 'left': '849px' })
					.animate({ 'top':236, 'opacity': 1 }, 1000, function(){
						$('.contato').show();
					});	
			}
		});
	});
	
	
	$('.fotografias').jcarousel({ scroll: 1, wrap: 'both' });
	
});

var items = ['.sobre', '.fotos', '.contato', '.hotel-link', '.album-link', '.contato-link'];


