$(document).ready(function(){
	$("#home-logos a").mouseover(function() {
		thisHref = $(this).attr("href");
		if ( thisHref.lastIndexOf('#') > -1 ) {
			thisHref = thisHref.substr( thisHref.lastIndexOf('#') )
			$('.home-featured').hide();
			$("#home-logos a").removeClass("point");
			$(this).addClass("point");
			$(thisHref).show();
			return false;
		}
	});
	$("#home-logos a").click(function() {
			return false;
	});
	$('.gallery a').lightBox();
	$('a.lightbox').lightBox();
});