$().ready(function() {
	$(function() {
	    $('a[rel=external]').add('area').add('a[href^=http]').click( function() {
	        window.open(this.href);
	        return false;
	    });
	    if (top != self) { 
            //alert('Это не настоящая страница');
            top.location.href = 'http://www.greenwood.ru';
        }
	});
})
