$(document).ready(function(){
	//For Services pages
	var currentPage = window.location.pathname;
	$(".services_menu a[href='"+currentPage+"']").addClass("active");
	$(".networking img").mouseover(function(){
		$(this).attr('src', $(this).attr('src').replace('.png', '_active.png'));
	});
	$(".networking img").mouseout(function(){
		$(this).attr('src', $(this).attr('src').replace('_active.png', '.png'));
	});
	
	//Takes user to services on pageload
	var regex = new RegExp("[a-z_]+");
	if(currentPage.match("/pages/services" + regex)){
		$(document).scrollTop(400);
	}
	
});
	

	
