//on page load
$(document).ready(function(){
	
	// Parent clickability in news items
	//* $("#news ol li").click(function(){
	//  window.location=$(this).find("a").attr("href"); return false;
	//}); 
	
	// Add 'odd' to news items to make darker
	$("#news ol li:nth-child(even)").addClass("even");
	
	// Let's Round Our Corners
	// 8px white on blue for sandox's wierd separations
	$('div.hentry').prepend('<div class="hd">'+'<div class="c"></div></div>')
	$('div.entry-content').append('<div class="ft">'+'<div class="c"></div></div>');

});
