// Cufon Replacements
Cufon.replace('h1, h2, h3, .menu-nav li a', { hover: true, fontFamily: 'Helvetica' });
Cufon.replace('.phone p, #top li', {hover: true, fontFamily: 'Helvetica' }); //  textShadow: '2px 1px 4px #000', 

var $j = jQuery.noConflict();
	$j(document).ready(function(){
	// Main navigation dropdowns
	$j('ul.menu-nav').superfish({
		delay:       300,                            // one second delay on mouseout
		animation:   { height:'show' },              // fade-in and slide-down animation
		speed:       'fast',                         // faster animation speed
		autoArrows:  false,                           // disable generation of arrow mark-up
		disableHI:   true,
		dropShadows: false                           // disable drop shadows
	});
	
	$j("ul#tabsmenu").tabs("div#tabspanes > .item", {effect: 'fade', current: 'current', event:'mouseover'});
	//effect: 'default' 'fade' 'ajax' 'slide' 'horizontal' !!!
	$j(".tooltips img[title]").tooltip({opacity: 0.85, effect: 'slide', position: ['center', 'center'], offset: [0, 150]}); //
	$j('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	$j('#featuredvid > ul').tabs();

});
