$(function() {
//TABS: CANVIA DE PESTANYA
 	$('.tabrezise a').click(function(){
 		
 		
 		//El dom no calcula bé el total d'alçada, el forcem:
 		$('#cols').height(ORIGINAL_LT_SIZE);
 		
 		//El dom no calcula bé el total d'alçada, el forcem:
		//aixo es perque el IE crida l'event de redimensionar si es canvia el height, ho evitem l'accio de reposicionament
		DO_NO_RESIZE=true;
 		//Forcem el tamany original la posició original
 		alturat = $('.tab.selected').height() - alturat1;
 		$('#cols').height(ORIGINAL_LT_SIZE+alturat);
 		setTimeout("DO_NO_RESIZE=false;",100);

 		//~ ajaxSite_DoHit();
 		
 		return false;
	});
	
});

jQuery(document).ready(function() {

		//posicionament de la barra
		ORIGINAL_LT_SIZE = $('#cols').height();
		var off = $(window).height() - $('#cols').height() - 340 - 82;
		if(off < 0 ) off = 0;
		$('#cols').height(ORIGINAL_LT_SIZE + off);
		//~ altura1 = $('.infoCd.selected').height();
		alturat1 = $('.tab.selected').height();
		//~ alturav1 = $('.SSG.categoria1').height();
		//~ alturaL1 = $('.SSG.categoria1').height();
	//~ if(NO_CALC_BOT != true){
		$(document).resize(calcBottom);
		$(window).resize(calcBottom);
	//~ }	

});

