
$(function(){
	$("#live-support-feature").hover(
		function () {
			$("#live-support-feature-hover").css('display','block');
		},
		function () {
			$("#live-support-feature-hover").css('display','none');
		}
	);	

	
	if(window.location.toString().replace(/^.+#/,'') == 'map'){
		locations.browse("north-america","ventrilo");
	}
	
	$('#show-image').dialog({
		autoOpen	: false,
		modal		: true,
		draggable	: false,
		resizable	: false,
		bgiframe	: isIE6,
		title		: "Screen Shot",
		open		: function(){
			$('#show-image').dialog('option','position','center');
			if(isIE6){
				DD_belatedPNG.fix('.ui-dialog-titlebar-close'); //our close button is a png
				DD_belatedPNG.fix('.continent-image'); //our close button is a png
			}
		}
	});	
	
	$('#prices a').mouseout(function(e){
		$('.more-price').hide();
	});
	
	$('#server-name input').focus(function(){
		$(this).val('');
	});	
});

