	jQuery.noConflict();
	
	jQuery(document).ready(function($){
		
		$('ul li:first-child').addClass('first-child');
		$('ul li:last-child').addClass('last-child');
		$('.content p:last-child').addClass('last-child');
		$('.content h1:first-child').addClass('first-child');
		$('.content h2:first-child').addClass('first-child');
		$('.content h3:first-child').addClass('first-child');
		$('.content h4:first-child').addClass('first-child');
		$('.content h5:first-child').addClass('first-child');
		$('.content h6:first-child').addClass('first-child');

		$('#services-list ul li').equalHeights();
		
		$('.setLocation').click(function(e) {
			var url = $(this).attr("title");
			if(url.length > 0) {
				window.location.href = url; 
			}
			else {
				console.log('ERROR: Some element with .setLocation class has undefined title="" attribute!')
			}
		});
		
		$('#contact-form').validate();
		
	});
