jQuery(document).ready(function($) {
  $('.ftkheader .ftkheader2 .ftkheader3 .slide').cycle({ fx: 'fade', speed: 900, timeout: 7000 });
  
  
	$(".mousetipclick").mouseover(function(e) {
    var theid = $(this).attr("id").replace("tooltip", "");
    $('#mousetip' + theid).css('display', 'block');
  })
  .mouseout(function(e) {
    var theid = $(this).attr("id").replace("tooltip", "");
    $('#mousetip' + theid).css('display', 'none');
	});
// #tooltip4
// #mousetip4
  
});
