function check_hot_properties(){
		if (document.body.clientWidth < 1144){
			document.getElementById('hot_preview').style.display = 'none';
			document.getElementById('hot_preview_nav').style.display = 'none';
		}else{
			document.getElementById('hot_preview').style.display = 'block';
			document.getElementById('hot_preview_nav').style.display = 'block';
		
		}
	}
	
	function close_left_coll(){
		var count_pic = Math.round(document.getElementById('hot_preview').clientWidth/140,0);
		for (i=count_pic; i<6; i++){
			var courent = 'hot_'+(i-count_pic+1);
			var style = document.getElementById(courent).style.display;
			if (style != 'none'){
				document.getElementById(courent).style.display = 'none';
				i = 10;
			}
		}
		
	}
	
	function show_left_coll(){
		for (i=6; i>0; i--){
			var courent = 'hot_'+i;
			var style = document.getElementById(courent).style.display;
			if (style != 'inline'){
				document.getElementById(courent).style.display = 'inline';
				i = 0;
			}
		}	
	}
	
	function notification_Close(){
		if (ie4||ns6)
			crossobj.style.visibility='hidden';
		else if (ns4)
			crossobj.visibility='hide';
	}
	
	function notification_Show(iHeight) {
		if (ie4||ns6) {
			crossobj.style.visibility='visible'
			notification_Move(0, iHeight, 25, 1000)
		} else if (ns4) {
			crossobj.visibility='show'
		}
	}
	
	function notification_Move(startY, endY, steps, msec, counter) {
		if(!counter) counter = 1;
		var tmp;
		if(startY < endY) {
			crossobj.style.height=endY / steps * counter + 'px';
		} else {
			tmp=steps -	counter;
			crossobj.style.height=startY / steps * tmp + 'px';
		}
		if(counter != steps) {
			counter++;
			flytbox_timer=setTimeout('notification_Move('+ startY + ','+ endY + ',' + steps + ',' + msec + ', '+ counter + ')', msec/steps);
		} else {
			if(startY > endY) crossobj.style.display = 'none';
		}
	}
