$(document).ready(function(){
						   
	 $('#navigation > ul > li').hover(
		function(){
			$(this).addClass('sfhover');
			$(this).find(':first-child').addClass('active');
		},
		function(){
			$(this).removeClass('sfhover');
			$(this).find(':first-child').removeClass('active');
		}
	);

	/* first and last styles that cannot be easily added in wordpress */
	$("#navigation ul li:first-child").addClass("first");
	$("#footer li:first-child").addClass("first");
	$("body.blog div.inner div:last-child").addClass("post-last");
	$("div.subnav ul li:last-child").addClass("last");

	// Feed reader
	$('#feeds').feedreader({
			targeturl: 'http://yellowbirdtechnologyblog.com/?feed=rss2',
			items: 2,
			descLength: 15
	});
});