// JavaScript Document
	$(document).ready(
			function(){
				$.getFeed({
							url: 'proxy.php?url=http://www.doctorhawrych.com/category/skin-care-products/feed/', 
							success: function(feed) {
							
									jQuery('#result').append('<section><h1>'
									+ '<a href="'
									+ feed.link
									+ '">'
									+ feed.title
									+ '</a>'
									+ '</h1>');
									
									var html = '';
									
									for(var i = 0; i < feed.items.length && i < 4; i++) {
									
										// if( i >0 && i%2 == 0 ) html += '<div class="clearfloat"></div>'
										
										var item = feed.items[i];
										html += '<h3>'
										+ '<a href="'
										+ item.link
										+ '">'
										+ item.title
										+ '</a>'
										+ '</h3>';
										
										html += '<div class="rss-item"><div class="updated">' // 
										+ item.updated
										+ '</div>';
										html += '<div class="clearfloat"></div>';
										html += '<div class="desc">'
										+ item.description
										+ '</div>';

										html += '<div class="clearfloat"></div>'
										html += '</div>';
									}
									html += '</section>';
									
									jQuery('#result').append(html);
							}    
					});
			});

