﻿jQuery(document).ready( function( $ ) {
        $( '.method' ).hover(
                function () {
                    $( this ).find( '.slide' ).stop().animate( { 'top': '-210px' }, 280 );
                },
                function () {
                    $( this ).find( '.slide' ).stop().animate( { 'top': '-0px' }, 280 );
                }
            );
        });
