// JavaScript Document
	
	function go_to(a){
		
	var targ = $(a).offsetTop;
	
	window.scrollTo(0,targ);	
	
		
	}
	function getFeed(){
	$.getFeed({
	   url: 'phps/proxy.php?url=http://odemsensiskin.wordpress.com/feed/',
	   success: function(feed) {
		  
            var html = '';
            for(var i = 0; i < feed.items.length && i < 2; i++) {
            
                var item = feed.items[i];
                
                html += '<h2>'
                + '<a href="'
                + item.link
                + '">'
                + item.title
                + '</a>'
                + '</h2>';
                
               /* html += '<div class="updated">'
                + item.updated
                + '</div>';*/
                
                html += '<div>'
                + item.description
                + '</div>';
            }
           
            $('#newsItems').html(html);

	   }
	});	
	}