(function($){ 
  jQuery.fn.idle = function(time){ 
      var o = $(this); 
      o.queue(function(){ 
         setTimeout(function(){ 
            o.dequeue(); 
         }, time);
      });
      return this;
  };
})(jQuery);

jQuery.noConflict();
jQuery(document).ready(function(){
	var timeOut = 5000;
	jQuery("#magician_menu").html('<a href="http://www.tripmagician.com/subscribe.html" target="_blank"><img src="/images/magician-sequence-animation-top.gif?'+Math.random()+'" width="446" height="450" alt="Click here for our Travel Deals Newsletter" title="Click here for our Travel Deals Newsletter" /></a>').css({zIndex:10}).fadeIn('slow').idle(timeOut).fadeOut('slow',function() {
		jQuery("#magician_scroller").html('<a href="http://www.tripmagician.com/subscribe.html" target="_blank"><img src="/images/magician-sequence-animation-bottom.gif?'+Math.random()+'" width="446" height="450" alt="Click here for our Travel Deals Newsletter" title="Click here for our Travel Deals Newsletter" /></a>').css({zIndex:10}).fadeIn('slow').idle(timeOut).fadeOut('slow');
	});
});