
$(function(){
		
	if(top.document.location.href.indexOf('ice')==-1 || document.location.href.indexOf('mode=nav')!=-1){
		$(window).bind('resize load',function(){
			$('.min_height, .min_height IMG').css('height',$(window).height()-278);
			
		})
		$m=0
		
		$move=setInterval("marquee($m);$m--;",20)
	
	}

})
function marquee($m){
	$('#item_flash').css('margin-left',$m);
	if($('#flash').width()+$m+Math.round($('#item_flash').css('margin-left').replace('px',''))<0) {
		clearInterval($move);	
		$move=setInterval("marquee($m);$m++;",20)
	}
	if($('#flash').width()+$m+Math.round($('#item_flash').css('margin-left').replace('px',''))>$('#flash').width()) {
		clearInterval($move);	
		$move=setInterval("marquee($m);$m--;",20)
	}
}
