$(function() {
	$("a.current").click(function() { return false; });
	
	$("#home_logo.hover").hover(function(){
		var img = $(this).children('img');
		img.attr('src', 'images/talstone_logo_hover.png');
	}, function() {
		var img = $(this).children('img');
		img.attr('src', 'images/talstone_logo.png');
	});
	
	$("#careers").dialog({
		autoOpen: false,
		height: 140,
		modal: true
	});

	$("#careers-link").click(function(){
		$("#careers").dialog('open');
		return false;
	});
	
	$(".typekit-badge").hide();
});