jQuery(function($){
	
	
//vertical menu-frontpage

        $("#front-page ul.sf-menu").superfish({ 
            delay:     1200,
			autoArrows: false,
			dopshadow: false,
			onBeforeShow: function(){
				
				$(this).css("top", '-'+ 0 - ($(this).height()/2 - 17) + 'px');
			}
        }); 

		$("#single-page ul.sf-menu").superfish({ 
            delay:     1200,
			autoArrows: false,
			dopshadow: false,
			onBeforeShow: function(){
			}
        });

			//background image rotator
			if($('body#front-page')){
				$("#front-page #header-wrap").randombg();

				//testimonial rotator
				//$("#front-page .testimonials").randomtext();

				//$("#front-page .testimonials").refreshtext();






}

  $(document).ready(function() {
  $(".headermenulink").hover(function() {
  $(this).addClass("header-menu-over");
  }, function() {
  $(this).removeClass("header-menu-over");
  });
  });



});




