$j(document).ready(function() {
	var url = location.href;
	if (url.match("ldne")) {	
		$j("DIV#emeraldpromos A").mouseover(function(){
			$j(this).find("DIV").stop().animate({ 
				bottom: "0px"
			  }, 200 );
		}).mouseout(function(){
			$j(this).find("DIV").stop().animate({ 
				bottom: "-45px"
			  }, 200 );
		});;		
	}
});
