$(document).ready(function(){	
	var isnotics=$.cookie('greenweb-isnotics');
		if(isnotics=='ok'){
			$('#isnotics-box').css('display','none');
			}
		$('#isnotics-close').click(function(){
			$.cookie('greenweb-isnotics','ok',{expires:1});
			$('#isnotics-box').hide('slow');
			});
		});
