
function loadPage() 
{
    // initialize scrollable 
    $('div.scrollable').scrollable({
    	size:3, 
    	keyboard:false, 
    	clickable:false 
    });
    
    $('a[rel]').overlay({ 
        expose: { 
        	// you might also consider a "transparent" color for the mask 
        	color: '#AAAAAA', 
        	// load mask a little faster 
        	loadSpeed: 400, 
        	// highly transparent 
        	opacity: 0.8
    	}, 
        //expose: 'grey', 
   	    closeOnClick: false, 
        onBeforeLoad: function() { 
 
            // grab wrapper element inside content 
            var wrap = this.getContent().find('div.contentWrap'); 
 
            // load the page specified in the trigger 
            wrap.load(this.getTrigger().attr('href')); 
        } 
 
    }); 
	

	
   	$('div[title]').tooltip('#tooltip'); 
	$('div[title]').attr('title','');
	
	

}