jQuery.noConflict();

/*
BEGIN
- - - - - - - - - -[ BEGIN jQuery document ready
*/
jQuery(document).ready(function()
{

// **********NOTE, THESE TIMERS ARE IN THE 1xx RANGE ***************
/*
- - - - - - - - - -[ BEGIN - timers - requires timer plugin
*/
// timers
	var navTimer101 = {};
	var navTimer102 = {};
	var navTimer103 = {};
/*
- - - - - - - - - -[ END - timers - requires timer plugin
*/


/*
- - - - - - - - - -[ BEGIN - index page callouts - requires jquery 1.3.2
*/
// REQUIRES A TIMER TO BE SET - SEE TIMERS ABOVE

// - - - - -Managed File Transfer
jQuery("#calloutManageTrigger").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbManage").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanManage").slideDown(150);
	});
});

jQuery("#calloutManageTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbManage").show();
		jQuery("#calloutPanManage").slideUp(150);
	//});
});

// - - - - -Job Scheduling
jQuery("#calloutJobTrigger").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbJob").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanJob").slideDown(150);
	});
});

jQuery("#calloutJobTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbJob").show();
		jQuery("#calloutPanJob").slideUp(150);
	//});
});

// - - - - -Application Automation
jQuery("#calloutAppAutoTrigger").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbAppAuto").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanAppAuto").slideDown(150);
	});
});

jQuery("#calloutAppAutoTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbAppAuto").show();
		jQuery("#calloutPanAppAuto").slideUp(150);
	//});
});

// - - - - -Virtualization Management
jQuery("#calloutVirtMan").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbVirtMan").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanVirtMan").slideDown(150);
	});
});

jQuery("#calloutVirtManTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbVirtMan").show();
		jQuery("#calloutPanVirtMan").slideUp(150);
	//});
});

// - - - - -Application Release Automation
jQuery("#calloutAppRelAuto").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbAppRelAuto").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanAppRelAuto").slideDown(150);
	});
});

jQuery("#calloutAppRelAutoTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbAppRelAuto").show();
		jQuery("#calloutPanAppRelAuto").slideUp(150);
	//});
});

// - - - - -Run Book Automation
jQuery("#calloutRunBookAuto").mouseover(function()
{
	jQuery.clearTimer(navTimer101);
	jQuery(".panelThumbRunBookAuto").hide();
	navTimer101 = jQuery.timer(350,function() // Delay .35 second
	{
		jQuery("#calloutPanRunBookAuto").slideDown(150);
	});
});

jQuery("#calloutRunBookAutoTrigger").mouseleave(function()
{
	jQuery.clearTimer(navTimer101);
	//navTimer101 = jQuery.timer(350,function() // Delay .35 second
	//{
		jQuery(".panelThumbRunBookAuto").show();
		jQuery("#calloutPanRunBookAuto").slideUp(150);
	//});
});

/*
- - - - - - - - - -[ END - index page callouts - requires jquery 1.3.2
*/

/*
- - - - - - - - - -[ END jQuery document ready
*/
});

