function slideOpen(AMOUNT,NUM){
	/*
	for(i=1;i<=AMOUNT;i++){
		$('#blockBig'+i).hide();	
	}
	$('#wichblock').val(NUM);
	$('#blockBig'+NUM).slideDown('slow');	
	*/
	for(i=1;i<=AMOUNT;i++){
		$('#blockBig'+i).hide();	
	}
	$('#wichblock').val(NUM);
	//$('#blockBig'+NUM).fadeIn('slow');	
	
	$('#blockBig'+NUM).fadeIn('slow', function() {
	   if ($.browser.msie) this.style.removeAttribute('filter');
	});

}
$(document).ready(function() {
	$('#outer').css('height',$(document).height());
	resizeOuter();
});

$(window).resize(function() {
	resizeOuter();
});

function resizeOuter(){
	$('#outer').css('height',$(document).height());
}
