//siblings()
$(document).ready(function(){
$("h2").siblings();
});
//next()
$(document).ready(function(){
$("h2").next();
});
//nextAll()
$(document).ready(function(){
$("h2").nextAll();
});
//nextUntil()
$(document).ready(function(){
$("h2").nextUntil("h6");
});