	$(document).ready(function(){
	
		$('#tooltip-col1, #tooltip-col2, .tip, .tip2').hide();
		
		//makes it so it shows pop when you scroll over a link
		$('.col1 .subSize li a').hoverIntent(function(){		
			$('#tooltip-col1').html(
				$(this).parent("li").children(".tip").html()
			).fadeIn();
		},function(){
			//$('#tooltip-col1').fadeOut(500);
		});
		
		$('.col2-mid .subSize li a').hoverIntent(function(){
			$('#tooltip-col2').html(
				$(this).parent("li").children(".tip2").html()
			).fadeIn();
		},function(){
			//$('#tooltip-col2').fadeOut(500);
		});
		
		//makes it so it shows the pop up when they are in the col
		$('#pop2').hoverIntent(function(){
			//
		},function(){
			$('#tooltip-col2').fadeOut(1500);
		});
		$('#pop1').hoverIntent(function(){
			//
		},function(){
			$('#tooltip-col1').fadeOut(1500);
		});
		
		//makes it so pop up will show again if you decide to go back when its fading
		//doesnt work yet though
		/*
		$('#tooltip-col2').hoverIntent(function(){
			$('#tooltip-col2').fadein();
		},function(){
			//
		});
		$('#tooltip-col1').hoverIntent(function(){
			$('#tooltip-col1').fadein();
		},function(){
			//
		});
		*/
		
		//makes it so you can have link that dont show the pop up
		$('#nopop2').hoverIntent(function(){
			$('#tooltip-col2').fadeOut();
		},function(){
			//
		});
		$('#nopop1').hoverIntent(function(){
			$('#tooltip-col1').fadeOut();
		},function(){
			//
		});
		
	});		 