$(document).ready(function() {
  //start carousel for testimonials
  $("#sw-testi-carousel").jCarouselLite({
    auto: 14000,
    speed: 200,
    show: 1,
    scroll: 1,
    easing: 'easeOutQuint'
  });
	
  //start autoclear for email subscription
  $("#email_address").focus(function(){
    if($(this).val() == "enter your email address") {
      $(this).val("");
    }
  });
$("#email_address").blur(function(){
  if($(this).val() == "") {
    $(this).val("enter your email address");
  }
});


$(".page-item-506").hover(
  function() {
    $(this).find("ul").fadeIn();
  },
  function() {
    $(this).find("ul").fadeOut();
  });
  
$(".page-item-309").hover(
  function() {
    $(this).find("ul").fadeIn();
  },
  function() {
    $(this).find("ul").fadeOut();
  });
  
  $(".page-item-1109").hover(
  function() {
    $(this).find("ul").fadeIn();
  },
  function() {
    $(this).find("ul").fadeOut();
  });
  
  $(".page-item-682").hover(
  function() {
    $(this).find("ul").fadeIn();
  },
  function() {
    $(this).find("ul").fadeOut();
  });


  $(".page-item-506 ul").addClass('dropdown').addClass('clearfix');
  $(".page-item-309 ul").addClass('dropdown').addClass('clearfix');
  $(".page-item-1109 ul").addClass('dropdown').addClass('clearfix');
  $(".page-item-682 ul").addClass('dropdown').addClass('clearfix');

});

