function catListSpace(){
	var catList = $('a.greencolor');
	catList.each(function(i){
		if($(this).text()=='CLEAR CRYSTAL BOWLS'){
			$(this).css({'display': 'block', 
						'margin-top': '25px',
						'margin-bottom':'0px', 
						'padding-bottom':'0px'});
		}
		if(($(this).text()=='E3')||($(this).text()=='N')){
			$(this).css('display', 'none');
		}
						  });
}

function popupnews(){
	$('#aweber-newsletter').animate({
		opacity:1.0,
		top:"0px"
									},1500);
	$('#aweber-newsletter a#newsletter-aweber-close').click(function(){
		$('#aweber-newsletter').fadeOut(500);
																	 });
}

$(document).ready(function(){	
	catListSpace();
	if($('#aweber-newsletter')){
		popupnews();
	}
						   });