// JavaScript Document


// document ready
/*$(document).ready(function($) {
								
	// Twitter account van Veldhoen
  $("#userandquery").tweet({
	count: 1,
	//username: "VeldhoenRomeijn",
	username: "VeldhoenRomeijn",
	loading_text: "Tweet zoeken..."
  });
  
  // volg ons op twitter slide blokje
  $('.volgons').mouseenter(function() {
	  $('.volgons').stop().animate({
		right: '-13',
	  }, 500, function() {
	  });
	});
  $('.volgons').mouseleave(function() {
	  $('.volgons').stop().animate({
		right: '-21',
	  }, 300, function() {
	  });
	});
  	
	// Formulieren
	$("#formc").validate();
	$("#forma").validate();

});*/

$(document).ready(function()
{	
 $("#userandquery").tweet({
	count: 1,
	//username: "VeldhoenRomeijn",
	username: "VeldhoenRomeijn",
	loading_text: "Tweet zoeken..."
  }); 
 	
	$('.volgons').mouseleave(function() {
	  $('.volgons').stop().animate({right: '-21'}, 300, function() {});
	});
  	$('.volgons').mouseenter(function() {
	  $('.volgons').stop().animate({right: '-13'}, 500, function() {});
	});
/* 
*/
	$("#forma").validate();
	$("#formc").validate();

	
});
 //Dropdown menu
$(function () {
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				var current = $j('.dropdown:eq(0)', this);
				current.slideDown(100);
			},
			out: function () {
				var current = $j('.dropdown:eq(0)', this);
				current.fadeOut(200);
			}
		});
	});		
});

