/*$(window).load(function () {
	$('#loading').fadeOut('fast');
	initHome();
});
*/
var w=null;
var h=null;

$(function() {
		
 	$(document).pngFix({base: BASE+"/"}); 
	
 	resize();
 	$(window).resize(function() {resize();})
	

	/* MENU */
	/*$("#menu a").click(function() {
		gotoBlock($(this).attr("rel"));	
	})*/
	
	
	
	
})


function resize() {
	w = $(window).width();
 	h = $(window).height();

 	$('#loading').css({
		width: w,
		height: h
	});
 	
 	$('#web').css({
		width: w,
		height: Math.max(h,750),
		overflow: 'hidden'	
	});
	
	
	var sectionH=$('#web > div').height();
	
	if (sectionH>0) {		
		var top=80+(h-80-90-sectionH)/2;
		if (top<80) {
			top=80
		}
		$('#web > div').css({ marginTop : top+"px"});
	}
	
	
	/*
	$('.blocks ').css({		
		width: w*3
	});
	$('.blocks > li').css({		
		width: w,
		height: h,
		float: 'left',
		overflow: 'hidden'	
	});
	*/
	
	
	
}

