// Some JQuery to enhance the theme

var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j('ul>li:last-child').addClass('last');

	$j('ul>li:first-child').addClass('first');
	
	$j('.entry>.half-column:first').addClass('first');
	
	$j('#footer>div:first-child').addClass('first');
	
	$j('.home-bottom-widgets>.widget:last').addClass('last');
	
	$j('.home-widgets>.widget:last').addClass('last');
	
	$j('.screen-reader-text').replaceWith('<label for="s" class="screen-reader-text">Search</label>');

});
