//<![CDATA[
    /* JavaScript code */ // Selects one or more elements to assign a simpletip to
    $('.generatorstab a').simpletip ({
      content:'<div class="timmingbox"> <h2> Electrical Services<\/h2> <p> As an established electrical contractor in Virginia for more than 39 years, we offer quality, dependable installations, systems maintenance and repairs for residential, commercial and industrial customers.<\/p>  <a href="/electrical-services"><div class="actionline">  Learn More <\/div> <\/a> <\/div> ',
      fixed: true,
      position: [5, 0] ,
      showEffect: 'slide',
      hideEffect: 'fade',
      persistent: false,
      showTime: 0,
      hideTime: 400 }); 

    $('.lawntab a').simpletip ({
      content:'<div class="timmingbox"> <h2>Generator Installation <\/h2> <p> From residential homeowners and small businesses to healthcare, municipal and industrial facilities, we provide turnkey generator installations for top brands like Generac, Briggs & Stratton, GE, Kohler and more.<\/p>   <a href="/generator-installations"> <div class="actionline2"> Learn More <\/div>  <\/a><\/div> ',
      fixed: true,
      position: [5, 0] ,
      showEffect: 'slide',
      hideEffect: 'fade',
      persistent: false,
      showTime: 0,
      hideTime: 400 });

    $('.rentaltab a').simpletip ({
      content:'<div class="timmingbox"> <h2>Industries Served<\/h2> <p> We meet the challenges head on that a wide range of Virginia industries face when hiring an electrical contractor - including healthcare facilities, industrial power plants, commercial business, homeowners and universities.<\/p>  <a href="/industries-served"><div class="actionline2">  Learn More<\/div> <\/a> <\/div>',
      fixed: true,
      position: [5, 0] ,
      showEffect: 'slide',
      hideEffect: 'fade',
      persistent: false,
      showTime: 0,
      hideTime: 400 }); 

    $('.partstab a').simpletip ({
      content:'<div class="timmingbox"> <h2>Case Studies <\/h2> <p> When a quick response is needed during an unplanned outage, or patient safety and facility integrity is a concern, we&#39;ve been there to support our customers by ensuring electrical systems remain reliable and efficient.<\/p>  <a href="/case-studies"><div class="actionline2">  Learn More <\/div> <\/a> <\/div>',
      fixed: true,
      position: [5, 0] ,
      showEffect: 'slide',
      hideEffect: 'fade',
      persistent: false,
      showTime: 0,
      hideTime: 400 }); 

    //]]>
	
	
	$(document).ready(function() {
	 function showNav(e){
		$(this).find("ul.subnav").slideDown('fast').show();
	}
	function hideNav(e){
		$(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
	}
	var navConfig = {
		interval: 300,
		sensitivity: 1,
		over: showNav,
		timeout: 200,
		out: hideNav,
		showTime: 10,
		hideTime: 600
	};
		//$('#navigation ul li').hoverIntent(navConfig); 
	});
