/*
=====================================================
VeriVide
JavaScript scripting initialisation via jQuery
=====================================================
*/

jQuery.noConflict();
jQuery(document).ready(function(){
	
	// Replace depreciated target="_blank" functionality for external links
	externalLinks();
	
	// Create drop-down navigation menu
	jQuery(".dropdown-menu").superfish({
		animation : { opacity:"show",height:"show"}
	});

	// Create news-ticker
	jQuery("#newsticker").newsticker();
	jQuery(".lightbox").lightbox({
          fileLoadingImage : 'assets/templates/verivide/images/lightbox/loading.gif',
          fileBottomNavCloseImage : 'assets/templates/verivide/images/lightbox/closelabel.gif'
        });

        // run the tooltips
        jQuery('a.tips').cluetip({
          cluetipClass: 'jtip',
          arrows: true, 
          dropShadow: false,
          splitTitle: '|'
        });
});