$(".overs").hide();
$("#specTable").hide();
$('.softwareInfo').hide();
$(document).ready(function(){
			
	$(".overs").hide();
	
	$.ui.dialog.defaults.bgiframe = true;
	$(function() {
		$('.softwareInfo').dialog({ autoOpen: false, show: 'fold', hide: 'fold', width:445, modal:true });
		$("#specTable").dialog({ autoOpen: false, modal: true, show: 'blind', hide: 'fold', width: 800, height: 600, position: 'center' });
	});
	
	$(function() {
		$("#tabs").tabs();
	});
	
	$("#openTable").click(function() {
		$('#specTable').dialog('open');
	});
	
	$("#openScene").click(function() {
		$('#sceneInfo').dialog('open');
	});
	$("#openScene").mouseover(function() {
		$('#sceneOver').show();
	});
	$("#openScene").mouseout(function() {
		$('#sceneOver').hide();
	});	
	
	$("#openScout").click(function() {
		$('#scoutInfo').dialog('open');
	});
	$("#openScout").mouseover(function() {
		$('#scoutOver').show();
	});
	$("#openScout").mouseout(function() {
		$('#scoutOver').hide();
	});
	
	$("#openScoutLT").click(function() {
		$('#ltinfo').dialog('open');
	});
	$("#openScoutLT").mouseover(function() {
		$('#ltOver').show();
	});
	$("#openScoutLT").mouseout(function() {
		$('#ltOver').hide();
	});
	
	$("#openCloud").click(function() {
		$('#cloudInfo').dialog('open');
	});
	$("#openCloud").mouseover(function() {
		$('#cloudOver').show();
	});
	$("#openCloud").mouseout(function() {
		$('#cloudOver').hide();
	});
	
	$("#openRecord").click(function() {
		$('#recordInfo').dialog('open');
	});
	$("#openRecord").mouseover(function() {
		$('#recordOver').show();
	});
	$("#openRecord").mouseout(function() {
		$('#recordOver').hide();
	});		
	
});	