jQuery(document).ready(function($) {
		
		$("#john").hover(function(){
				$("#blog-bubble")
				.animate({top:"2px"}, 200).animate({top:"10px"}, 200) // first jump
				.animate({top:"6px"}, 100).animate({top:"10px"}, 100) // second jump
				.animate({top:"8px"}, 100).animate({top:"10px"}, 100); // the last jump
		});
		
		$("#forums-questions").hover(function(){
				$("#forums-answers")
				.animate({top:"25px"}, 200).animate({top:"33px"}, 200) // first jump
				.animate({top:"29px"}, 100).animate({top:"33px"}, 100) // second jump
				.animate({top:"31px"}, 100).animate({top:"33px"}, 100); // the last jump
		});		

		$("#forums-answers").hover(function(){
				$("#forums-questions")
				.animate({top:"25px"}, 200).animate({top:"33px"}, 200) // first jump
				.animate({top:"29px"}, 100).animate({top:"33px"}, 100) // second jump
				.animate({top:"31px"}, 100).animate({top:"33px"}, 100); // the last jump
		});

		$("#contactus").hover(
			 function(){
				 $(this).stop().animate({paddingLeft: "15px"}, 300);
	     }, 
			 function(){
				 $(this).stop().animate({paddingLeft: "0px"}, 300);
		   });

		$(".faq").click(function(){
			 var answer = $(this).next();
			 if (answer.is(':visible')) {
					 answer.slideUp('normal');
			 } else {
					 answer.slideDown('normal');
			 }
		});

		$("dt").click(function(){
			 var answer = $(this).next();
			 if (answer.is(':visible')) {
					 answer.slideUp('fast');
			 } else {
					 answer.slideDown('fast');
			 }
		});
		
});
