$(document).ready(function() 
    { 
        // notice display / hide
        $('.fade').delay('15000').slideUp('slow');
        
        $(".sortMe").tablesorter(); 
        
	    $('.flag').each(function(){
	       $(this).qtip({
	          position: { adjust: { x: 5, y: -7 } },
	          content: {
	                text: $(this).attr('rel'),
	                title: { 
	                  text: 'More Information', 
	                  button: 'Close'
	                } },
	          show: {solo: true, ready: false, when: 'mouseover'},
	          hide: { when: 'blur', fixed: true },
	          style: { 
			      width: 200,
			      padding: 5,
			      border: {
			         width: 3,
			         radius: 5
			      },
			      tip: 'leftTop',
			      name: 'blue' // Inherit the rest of the attributes from the preset dark style
			  }
	       });
	    });

	    $('.interests').each(function(){
	       $(this).qtip({
	          position: { adjust: { x: 5, y: -7 } },
	          content: {
	                text: $(this).attr('rel'),
	                title: { 
	                  text: 'Interests', 
	                  button: 'Close'
	                } },
	          show: {solo: true, ready: false, when: 'mouseover'},
	          hide: { when: 'blur', fixed: true },
	          style: { 
			      width: 200,
			      padding: 5,
			      border: {
			         width: 3,
			         radius: 5
			      },
			      tip: 'leftTop',
			      name: 'blue' // Inherit the rest of the attributes from the preset dark style
			  }
	       });
	    });
		
		$('.phone').mask("999-999-9999");
		$('#birthday').mask("99/99/9999");
		
    } 
);
