var Search =
{
	baseUrl: null,

	init: function()
	{
		Search.baseUrl = location.protocol + '//' + location.hostname + '/';
		var url = location.pathname;
		if (location.hostname == 'devsys2.gaslightmedia.com') {
			var urlParts = url.split('/');
			Search.baseUrl += urlParts[1] + '/';
		} else if (location.hostname == 'kanga.acrewoods.com') {
			var site = location.pathname.split('/');
			var urlParts = url.split('/');
			Search.baseUrl += urlParts[1] + '/' + site[2] + '/';
		}

		$('.search-result-item').bind('mouseover', Search.highlightMember);
		$('.search-result-item').bind('mouseout', Search.lowlightMember);
		$('.search-result-item').bind('click', Search.goToMember);
	},

	highlightMember: function(event)
	{
		$(this).addClass('search-result-item-on');
	},

	lowlightMember: function(event)
	{
		$(this).removeClass('search-result-item-on');
	},

	goToMember: function(event)
	{
		var link = $(this).find("a[title='More Info']");
		document.location.href = link.attr('href');
	}
};

$(document).ready(Search.init);
