
function switch_class_logo(x,logo){
	if ( x   >= 1243 ) {
			 	logo.addClass('fixed_logo');
		 	}else{
		 		logo.removeClass('fixed_logo');
	}
}



function position_logo(){
	logo = $('#mallorcaActiva');
	var x = $(window).width();
	switch_class_logo(x, logo);
}

function height_box_border(correct){
box = $('.boxContent');
boxBorder = $('.boxBorder');
y = $(window).height();
fixedHeight = $(window).height() - 100;
				box.height(fixedHeight);
				boxBorder.height(fixedHeight);
				diferencia = $(window).height() - initial_y;
				nuevo_tam_scroll = $(window).height() - 374;
				if (correct == 'ok') {
					$('#contenido').jScrollPaneRemove();
					$('#contenido').css({'height' : nuevo_tam_scroll+'px'});
				}


}

	$().ready(function(){
		initial_y = $(document).height();
		initital_contenido_y = $('.contenido').height();
		initial_relacion = initital_contenido_y  / initial_y ;
		position_logo();
		height_box_border('ok');
		$('#contenido').jScrollPane();
		$(window).resize(function(){
		     position_logo();
			 height_box_border('ok');
				$('#contenido').jScrollPane();
				});
		});
		

