	function initPage() {
		$("#main_nav").live('mouseenter mouseleave',function(){$("#main_nav_Cnt").fadeToggle("fast", "linear");})
		$('#main a:not(.dft)').tooltip({ 
			track: true, 
			delay: 200, 
			showURL: false, 
			showBody: " - ", 
			fade: 150 
		});
		$('.scrollTop').live('click', function(){
		  $('html,body').animate({scrollTop: 0}, 100);
		});
	}
	function initImg()
	{
		$("a.dft").click(function(){return false;});

		var fullScreen=mainSize('w')>1600?true:false;

		fullScreen?$('body').addClass('fullScreen'):$('body').removeClass('fullScreen');

		var col1=col2=col3=colTop=colLeft=0;
		$('.category .img').each(function() {
			var col=fullScreen?Math.min(col1,col2,col3):Math.min(col1,col2);
			switch(col) {
				case col1:
					colTop=col1;
					colLeft=0;
					col1=col1+$(this).outerHeight(true);
					//$(this).appendTo('#col1');
					break;
				case col2:
					colTop=col2;
					colLeft=435;
					col2=col2+$(this).outerHeight(true);
					//$(this).appendTo('#col2');
					break;
				case col3:
					colTop=col3;
					colLeft=870;
					col3=col3+$(this).outerHeight(true);
					//$(this).appendTo('#col3');
					break;
			}
			$(this).css({
				top:colTop,
				left:colLeft
			});
        });
	}

