$(function(){
		   
	var bcd = "download";
	
	if (bcd == "download") {
		$('#headerGauge').remove();
		
		var ua = navigator.userAgent;
		$('#headerGauge').hide();
		if(ua.indexOf('IE 6') == -1){
			$('#header').css({
				paddingTop:'0',
				backgroundPosition:'center top'
			});
		}else{
			$('#headerGauge').css({
				backgroundPosition:'center -100px'
			});
		}
		
		$('body').unbind('mousemove');
	}
	
});
