$(document).ready(function(){
	
	window.setInterval(function(){
		var img = jQuery('#header #img img');
		for (var i=0;i<img.length;i++){			
			if (jQuery(img[i]).css('display')!='none'){
				if (i==img.length-1) 
						jQuery(img[0]).fadeIn('slow',function(){
							jQuery(img[i]).fadeOut('slow'); });
					else
						jQuery(img[i]).next('img').fadeIn('slow',function(){
							  jQuery(img[i]).fadeOut('slow'); });		
				return;				
			}
		}
	},4000);

	$("#mnuPest").hover(function(){
  	$("#subPest").show();
  }, 
  function(){
  	$("#subPest").hide();
  });
  
  $("#mnuCome").hover(function () {
  	$("#subCome").show();
  }, 
  function () {
  	$("#subCome").hide();
  });
  
  $('#contact-mail').html('<a href="mailto:justine'+'@'+'bugdoctorinc.com'+'">'+'justine'+'@'+'bugdoctorinc.com'+'</a>');
    
});
