
$(document).ready(function(){
    $('ul.sf-menu').superfish(); 
    
    $('a[rel*=lightbox]').lightBox({
			imageLoading:			'/fileadmin/layout/default/img/lightbox/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/fileadmin/layout/default/img/lightbox/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/fileadmin/layout/default/img/lightbox/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/fileadmin/layout/default/img/lightbox/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/fileadmin/layout/default/img/lightbox/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)        
			saveImage:              true
    });    
    
    $('table.topNationsList a').qtip({
        text: false,
        position: {
            corner: {
                target: 'bottomRight',
                tooltip: 'topLeft'
            }
        },        
        style: {
            name: 'dark',
            tip: 'topLeft',
            border: {
                width: 3,
                radius: 5
            },
            width: 200,
            padding: '0'
        }             
    });
    
    $('#newsletterSignup a.tooltip').qtip({
        text: false,
        position: {
            corner: {
                target: 'center',
                tooltip: 'topLeft'
            }
        },        
        style: {
            name: 'dark',
            tip: 'topLeft',
            border: {
                width: 3,
                radius: 5
            },
            width: 200,
            padding: '4px'
        }             
    });    
    
    var save_point = $.getUrlVar('tx_txresults_pi1%5Bsave_point%5D');
    if(save_point) {
        $('h2.red').removeClass('red').addClass('darkGrey');
        $('body').addClass('browsing-archive');
        
    }
    
    $('.add-treeview').treeview({
    	/*collapsed: true*/
    });
    
	$('#tweets').relatedTweets({
		from_users:'ttrworldtour'
		,status:1
		,realtime:0
		,n:20
		,show_avatar:0
		,show_author:0
		,debug: true
		,show_source: false
	});   
});