$(document).ready(function() 

{


	$(".rover").hover(function() {
		  $(this).addClass("rover-over"); },
		 function() {
		  $(this).removeClass("rover-over");
		 }
	);
	
	$(".home .element a img").hover(function() {
		$(this).parent().siblings('h2').toggleClass('underline');
	});
	
	// MENU ACTIONS
	     
    $('.logo_over').mouseenter(function() {
        $(this).fadeOut('fast')
     });
	
	$('#menu ul li a').hoverIntent(function() {
		$('.logo_over').fadeIn('fast');
     }, function(){});

	// OVERVIEW SLIDES
	
	$('.ovslides').cycle({                            
            timeout:500,
            speed:  800
      });
      
      $('.ovslides').each( function(){
   		$(this).cycle('pause'); 
		});

      $('.ovslides').hover(function() {
            $(this).cycle('resume');
      },function(){
            $(this).cycle('pause');
      });
      
      	$('.signup-button').click(function () {
				$("#simple_form").submit();
		});



});
	
  


