$(document).ready(function() {

	$('#neck ul li ul li ul li:first-child').addClass('first-child');
	$('#neck li').hover(
		function() {
			$(this).addClass('hover').parents('li').addClass('parent');
			},
		function() {
			$(this).removeClass('hover').parents('li').removeClass('parent');
			}
		);

	var _this = (location.href).replace('192.168.1.70/vectonemobileuk_v2', 'www.vectonemobile.co.uk').replace('https://', 'http://');
	$('#neck a').each(function() {
		_href = $(this).attr('href').replace('https://', 'http://');
		if(_this == _href) {
			$(this).parents('li').children('a').addClass('active');
			}
		});

	});