var $j = jQuery.noConflict();

jQuery(document).ready(function($) {

	//products-grid
	$('.products-grid .item:nth-child(2n)').addClass('last-in-row');
	$('.products-grid .item').equalHeights();
	
	//first/last-child
	$('ul li:first-child').addClass('first-child');
	$('ul li:last-child').addClass('last-child');
	
	//std
	$('.std h1:first-child, .std h2:first-child, .std h3:first-child, .std h4:first-child, .std h5:first-child, .std h6:first-child').addClass('first-child');
	
});
