$(document).ready(function(){
	$("#section,#imagen").css({opacity:0});
	$("#subsection").css({display:"none"});
		
	if (($('#content').offset().top)>=90)
		$('#content').css({top:'50%'});	
	if (($('#content').offset().top)<90)
		$('#content').css({top:'300px'});
	
	$('#content-wrap .mostrar').css({opacity:1});
	
	$('#section,#imagen').animate({opacity:1},1000);
	$('#location a').css({display:'block'});
	$('.jScrollPaneContainer').css({display:'block'});
			
	$('#section-wrap').jScrollPane({showArrows:false, scrollbarWidth:9, scrollbarMargin:0, arrowSize:0});
	
	
	$(window).bind('resize', function() {
		if (($('#content').offset().top)>=90)
			$('#content').css({top:'50%'});	
		if (($('#content').offset().top)<90)
			$('#content').css({top:'300px'});
	});
	
	
	$('#menu li a, #logo a').each(function(i) {
		if ($(this).attr('rel').length == 0) {
			$(this).attr('rel', $(this).attr('href'));
			$(this).attr('href', 'javascript: void(0);');
			
			$(this).click(function() {
				$('#section,#imagen').animate({opacity:0},500,function() {
					$('#location a').css({display:'none'});
					$('.jScrollPaneContainer').css({display:'none'});
				});
				
				if ($('#subsection').attr('class')!='noticias' && $('#subsection').attr('class')!='galeria noticias' && $('#subsection').attr('class')!='op galeria noticias')
					$('#subsection').hide('drop',{direction:'left'},500);
				else
					$('#subsection').hide('drop',{direction:'right'},500);
					
				setTimeout('window.location.href = \''+ $(this).attr('rel') +'\';',500);
			});
		}
	});
});
