var $j = jQuery.noConflict();

$j(document).ready(function() {

$j('#vi_start-calc-button-id').click(function() {
//      $j('#vi_calc_sum').fadeIn('slow');
	  $j('#vi_calc_sum').fadeIn('500');
    });

$j('.vi_contact-personwrapper').mouseenter(function(){
        //$j(this).stop(true,true).addClass("vi_contact-personwrapper-hover", 200);
		$j(this).animate({"padding-top":100,"height":100},250);
    });
    
    $j('.vi_contact-personwrapper').mouseleave(function(){
        //$j(this).stop(true,true).removeClass("vi_contact-personwrapper-hover", 200);
		$j(this).animate({"padding-top":170,"height":30},500);
    });

});
