$(document).ready(function(){
    $("#sidebar li>a ").hover(function(){
        
        $(this).stop().animate({marginLeft : "15px"},200,"swing");},
        function(){
        $(this).stop().animate({marginLeft : "5px"},200,"swing");}
        
    );
	$("#contact-form").jqTransform();
	$("#contact-form").validationEngine();
	
});

