// JavaScript Document

jQuery(document) .ready(function() {
								 $('#index-first-entry img') .each(function(index) {
																			$(this) .attr({
																						  'width': '208',
																						  'height': '208'
																						  })
																			})
								 
								 $('.index-sub-entry img') .each(function(index) {
																			$(this) .attr({
																						  'width': '128',
																						  'height': '128'
																						  })
																			})
								 $('.portfolio-website img') .each(function(index) {
																			$(this) .attr({
																						  'width': '298',
																						  'height': '224'
																						  })
																			})
								 
								 $('.portfolio-website:nth-child(3n+1)') .addClass('no-right-margin')
								 
								 $('p.linklove') .remove()
								 $('.zemanta-pixie') .remove()
								 $('.akpc_report span') .remove()
								 $('#homepage-post img') .remove()
							 
								 });