/*

Javascript for AndersBergmann.dk

*/

// Begin jQuery
	
$(document).ready(function() {

    /* =Social links
    -------------------------------------------------------------------------- */
	
		$(".social li").hover(function(){
			$(this).find("a").stop().animate({ marginTop: "-5px" }, 200);
		},function(){
			$(this).find("a").stop().animate({ marginTop: "0" }, 200);
		});
		
	/* =Clear Form Fields
    -------------------------------------------------------------------------- */

		$("input, textarea").searchField();

// End document ready
	
});

