notice = {
	close : function(){
		currentHref = location.href;
		if(currentHref.search(/\?/) == -1){
			location.href = location.href + '?closenotice=true';
		}else{
			location.href = location.href + '&closenotice=true';
		}
	},
	hide : function(){
		$('div.noFlash').remove();
	}
}