$(document).ready(function() {


	$(".tipfda .tip-content,.tipfda .tip-bottom, .tipadobereader .tip-content,.tipadobereader .tip-bottom, .tipadobeflash .tip-content,.tipadobeflash .tip-bottom").hide();
		
	$(".tipfda").hoverIntent(function () {
			$(".tipfda").click(function () {
				$(this).children(".tip-content,.tip-bottom").css({left:"-75px", cursor:"default"}).show();	
			});
		},
		function () {
			$(this).children(".tip-content,.tip-bottom").hide();
		}
	);

	$(".tipadobeflash").hoverIntent(function () {
			$(".tipadobeflash").click(function () {
				$(this).children(".tip-content,.tip-bottom").css({left:"-75px", cursor:"default"}).show();	
			});
		},
		function () {
			$(this).children(".tip-content,.tip-bottom").hide();
		}
	);

	$(".tipadobereader").hoverIntent(function () {
			$(".tipadobereader").click(function () {
				$(this).children(".tip-content,.tip-bottom").css({left:"-75px", cursor:"default"}).show();	
			});
		},
		function () {
			$(this).children(".tip-content,.tip-bottom").hide();
		}
	);
	
	// DISABLE ANCHORS ON TOOL TIP LINKS
	$(".tipfda:not(.external)").click(function(){
		return false
	});

	$(".tipadobeflash:not(.external)").click(function(){
		return false
	});

	$(".tipadobereader:not(.external)").click(function(){
		return false
	});

	// TURN CURSOR INTO POINTER ON "LINK" HOVER
	$(".tipfda em").hover(
		function () {
			$(this).css({cursor:"pointer"});
		},
		function () {
			$(this).css({cursor:"default"});
	});

	$(".tipadobeflash em").hover(
		function () {
			$(this).css({cursor:"pointer"});
		},
		function () {
			$(this).css({cursor:"default"});
	});
	
	$(".tipadobereader em").hover(
		function () {
			$(this).css({cursor:"pointer"});
		},
		function () {
			$(this).css({cursor:"default"});
	});

	
	
});

