var basicTimer = null;
var standardTimer = null;
var priorityTimer = null;

$(document).ready(function(){
	$(".basic").mouseover(function() {
		if (basicTimer != null) {
			clearTimeout(basicTimer);
			basicTimer = null;
		}
	  $(this).children("span").html("<div class='sub_level' id='basic'><p><strong>Basic</strong></p><ul><li>Access to product updates throughout the subscription period</li><li>30 days of web based installation and basic configuration support, 12x5 with 2 business day response</li></ul></div>");  
	  $("#basic").show("slow");
	}).mouseout(function() {
		basicTimer = setTimeout('$("#basic").hide("slow");',500);
		$("#basic").remove();
	});
	$(".standard").mouseover(function() {
		if (standardTimer != null) {
			clearTimeout(standardTimer);
			standardTimer = null;
		}
	  $(this).children("span").html("<div class='sub_level' id='standard'><p><strong>Standard</strong></p><ul><li>Product Maintenance and Updates throughout the subscription period</li><li>12x5 unlimited telephone and electronic support with four hour response</li><li>Early previews to key features for upcoming product releases</li></ul></div>");
	  $("#standard").show("slow");
	}).mouseout(function() {
		standardTimer = setTimeout('$("#standard").hide("slow");',500);
		$("#standard").remove();
	});
	$(".priority").mouseover(function() {
		if (priorityTimer != null) {
			clearTimeout(priorityTimer);
			priorityTimer = null;
		}
	  $(this).children("span").html("<div class='sub_level' id='priority'><p><strong>Priority</strong></p><ul><li>Product Maintenance and Updates throughout the subscription period</li><li>24x7 unlimited telephone and electronic support with four hour response, 1 hour response for Severity 1 issues</li><li>Early previews to key features for upcoming product releases</li></ul></div>");
	  $("#priority").show("slow");
	}).mouseout(function() {
		priorityTimer = setTimeout('$("#priority").hide("slow");',500);
		$("#priority").remove();
	});
	return false;
});