$(document).ready(function() {
	$("#main-content").fadeIn(3000);
	
	$('#features-slideshow').cycle({ 
    fx:     'scrollHorz',
    easing: 'easeOutCubic',
    prev: '#left-arrow',
    next: '#right-arrow', 
    speed:  1500, 
    timeout: 5000
	});
	$('.tooltip').tooltip({ 
    track: true, 
    delay: 0, 
    showURL: false, 
    showBody: " - ", 
    fade: 800,
    top:-20 
	});
	$('[title]').hover(
	   function(e) {
	       e.preventDefault();
	   },
	   function() { }
	);
	
	
});
		
