
jQuery(document).ready(function () {
		//alert("lala");
		
		jQuery(".postit_hover").hide();
		jQuery(".postit_text").hide();
		
		jQuery('.postit_note').mouseover(function() {
				hoverPostit(this.id);
		});
		
		
		jQuery('.postit_hover').click(function() {
				showPostit(this.id);
		});
		
		// jut load up the ones that we will initialiiy display ...
		jQuery(".postit_active").show();		



		jQuery('.close').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#TakeCampusTourPopUpFrame').attr('src', "");
		});


		jQuery('#AreYouReadyQuiz').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#AreYouReadyQuizPopUp').fadeIn('slow');
		});

		jQuery('#TakeCampusTour').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#TakeCampusTourPopUpFrame').attr('src', "http://www.knowhow2go.org/campustour");
			jQuery('#TakeCampusTourPopUp').fadeIn('slow');
		});

		jQuery('#CollegeQuiz').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#CollegeQuizPopUp').fadeIn('slow');
		});

		jQuery('#GetTough').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#GetToughPopUp').fadeIn('slow');
		});
		jQuery('#get-tough-menu > a').click(function(){
			jQuery('.popupbox').hide();
			jQuery('#GetToughPopUp').fadeIn('slow');
		});
		
		
		

		
		

		
		
		
		
		
		
		
});

function hoverPostit(id){
	jQuery(".postit_hover").hide();
	jQuery("#postit_"+id).show();	
}
	
function showPostit(id){
	jQuery(".postit_text").hide();
	jQuery("#"+id+"_text").show();
			 
}
